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



tag_exists › WordPress Function

Seit2.3.0
Veraltetn/v
tag_exists ( $tag_name )
Parameter:
  • (int|string) $tag_name
    Erforderlich: Ja
Gibt zurück:
  • (mixed) Returns null if the term does not exist. Returns an array of the term ID and the term taxonomy ID if the pairing exists. Returns 0 if term ID 0 is passed to the function.
Definiert in:
Codex:

Checks whether a post tag with a given name exists.



Quellcode

function tag_exists( $tag_name ) {
	return term_exists( $tag_name, 'post_tag' );
}