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



get_post_taxonomies › WordPress Function

Seit2.5.0
Veraltetn/v
get_post_taxonomies ( $post = 0 )
Parameter:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (string[]) An array of all taxonomy names for the given post.
Definiert in:
Codex:

Retrieves all taxonomy names for the given post.



Quellcode

function get_post_taxonomies( $post = 0 ) {
	$post = get_post( $post );

	return get_object_taxonomies( $post );
}