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



is_term › WordPress Function

Seit2.3.0
Veraltet3.0.0
is_term ( $term, $taxonomy = '', $parent = 0 )
Parameter: (3)
  • (int|string) $term The term to check
    Erforderlich: Ja
  • (string) $taxonomy The taxonomy name to use
    Erforderlich: Nein
    Standard: (leer)
  • (int) $parent ID of parent term under which to confine the exists search.
    Erforderlich: Nein
    Standard:
Siehe:
Gibt zurück:
  • (mixed) Get the term ID or term object, if exists.
Definiert in:
Codex:

Check if Term exists.



Ähnliche Funktionen: has_term, is_time, is_year, is_date, is_category

Quellcode

function is_term( $term, $taxonomy = '', $parent = 0 ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'term_exists()' );
	return term_exists( $term, $taxonomy, $parent );
}