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



the_tags › WordPress Function

Seit2.3.0
Veraltetn/v
the_tags ( $before = null, $sep = ', ', $after = '' )
Parameter: (3)
  • (string) $before Optional. String to use before the tags. Defaults to 'Tags:'.
    Erforderlich: Nein
    Standard: null
  • (string) $sep Optional. String to use between the tags. Default ', '.
    Erforderlich: Nein
    Standard: ', '
  • (string) $after Optional. String to use after the tags. Default empty.
    Erforderlich: Nein
    Standard: (leer)
Definiert in:
Codex:

Displays the tags for a post.



Ähnliche Funktionen: get_the_tags, the_meta, get_tags, the_terms, has_tag

Quellcode

function the_tags( $before = null, $sep = ', ', $after = '' ) {
	if ( null === $before ) {
		$before = __( 'Tags: ' );
	}

	$the_tags = get_the_tag_list( $before, $sep, $after );

	if ( ! is_wp_error( $the_tags ) ) {
		echo $the_tags;
	}
}