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



taxonomy_exists › WordPress Function

Seit3.0.0
Veraltetn/v
taxonomy_exists ( $taxonomy )
Parameter:
  • (string) $taxonomy Name of taxonomy object.
    Erforderlich: Ja
Gibt zurück:
  • (bool) Whether the taxonomy exists.
Definiert in:
Codex:

Determines whether the taxonomy name exists.

Formerly is_taxonomy(), introduced in 2.3.0. For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Quellcode

function taxonomy_exists( $taxonomy ) {
	global $wp_taxonomies;

	return is_string( $taxonomy ) && isset( $wp_taxonomies[ $taxonomy ] );
}