wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



is_taxonomy › WordPress Function

Depuis2.3.0
Dépréciée3.0.0
is_taxonomy ( $taxonomy )
Paramètres:
  • (string) $taxonomy Name of taxonomy object
    Requis: Oui
Voir:
Retourne:
  • (bool) Whether the taxonomy exists.
Défini(e) dans:
Codex:

Checks that the taxonomy name exists.



Source

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