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



is_taxonomy_viewable › WordPress Function

Seit5.1.0
Veraltetn/v
is_taxonomy_viewable ( $taxonomy )
Parameter:
  • (string|WP_Taxonomy) $taxonomy Taxonomy name or object.
    Erforderlich: Ja
Gibt zurück:
  • (bool) Whether the taxonomy should be considered viewable.
Definiert in:
Codex:

Determines whether a taxonomy is considered "viewable".



Quellcode

function is_taxonomy_viewable( $taxonomy ) {
	if ( is_scalar( $taxonomy ) ) {
		$taxonomy = get_taxonomy( $taxonomy );
		if ( ! $taxonomy ) {
			return false;
		}
	}

	return $taxonomy->publicly_queryable;
}