wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_archive_description › WordPress Function

Da4.1.0
Deprecaton/a
the_archive_description ( $before = '', $after = '' )
Parametri: (2)
  • (string) $before Optional. Content to prepend to the description. Default empty.
    Richiesto: No
    Default: (vuoto)
  • (string) $after Optional. Content to append to the description. Default empty.
    Richiesto: No
    Default: (vuoto)
Vedi:
Definito a:
Codex:

Displays category, tag, term, or author description.



Sorgenti

function the_archive_description( $before = '', $after = '' ) {
	$description = get_the_archive_description();
	if ( $description ) {
		echo $before . $description . $after;
	}
}