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



the_archive_title › WordPress Function

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

Displays the archive title based on the queried object.



Quellcode

function the_archive_title( $before = '', $after = '' ) {
	$title = get_the_archive_title();

	if ( ! empty( $title ) ) {
		echo $before . $title . $after;
	}
}