Retrieves all taxonomy names for the given post.
Parameters
Source
function get_post_taxonomies( $post = 0 ) {
$post = get_post( $post );
return get_object_taxonomies( $post );
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
Retrieves all taxonomy names for the given post.
function get_post_taxonomies( $post = 0 ) {
$post = get_post( $post );
return get_object_taxonomies( $post );
}
Version | Description |
---|---|
2.5.0 | Introduced. |
You must log in before being able to contribute a note or feedback.
Displays all taxonomies of a post.
Output:
#return section should say that the function returns an array of all taxonomy names for the given post or post object instead of just an array.
This highlights the main point of difference between get_post_taxonomies and get_object_taxonomies which can return an array of all taxonomy names or an array of all taxonomy objects.
https://codex.wordpress.org/Function_Reference/get_post_taxonomies
https://developer.wordpress.org/reference/functions/get_object_taxonomies/