wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



is_taxonomy › WordPress Function

Da2.3.0
Deprecato3.0.0
is_taxonomy ( $taxonomy )
Parametri:
  • (string) $taxonomy Name of taxonomy object
    Richiesto:
Vedi:
Ritorna:
  • (bool) Whether the taxonomy exists.
Definito a:
Codex:

Checks that the taxonomy name exists.



Sorgenti

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