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



is_taxonomy › WordPress Function

Seit2.3.0
Veraltet3.0.0
is_taxonomy ( $taxonomy )
Parameter:
  • (string) $taxonomy Name of taxonomy object
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) Whether the taxonomy exists.
Definiert in:
Codex:

Checks that the taxonomy name exists.



Quellcode

function is_taxonomy( $taxonomy ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'taxonomy_exists()' );
	return taxonomy_exists( $taxonomy );
}