2020-05-01 / 6147阅 / 悠然
Return the names or objects of the taxonomies which are registered for the requested object or object type, such as a post object or post type name.
Example:
$taxonomies = get_object_taxonomies( 'post' );
This results in:
Array( 'category', 'post_tag' )
(string|string[]|WP_Post)
(Required)
Name of the type of taxonomy object, or an object (row from posts)
(string)
(Optional)
The type of output to return in the array. Accepts either 'names' or 'objects'.
Default value: 'names'
(string[]|WP_Taxonomy[]) The names or objects of all taxonomies of $object_type.