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



tag_description › WordPress Function

Seit2.8.0
Veraltetn/v
tag_description ( $tag = 0 )
Parameter:
  • (int) $tag Optional. Tag ID. Defaults to the current tag ID.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (string) Tag description, if available.
Definiert in:
Codex:

Retrieves tag description.



Quellcode

function tag_description( $tag = 0 ) {
	return term_description( $tag );
}