wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_archive_description › WordPress Function

Seit4.1.0
Veraltetn/v
the_archive_description ( $before = '', $after = '' )
Parameter: (2)
  • (string) $before Optional. Content to prepend to the description. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $after Optional. Content to append to the description. Default empty.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Definiert in:
Codex:

Displays category, tag, term, or author description.



Quellcode

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