get_object_taxonomies
get_object_taxonomies ( $object_type, $output = 'names' )
Parameters:- (string|string[]|WP_Post) object_type Name of the type of taxonomy object, or an object (row from posts).
- (string) output Optional. The type of output to return in the array. Accepts either 'names' or 'objects'. Default 'names'.
Returns:- (string[]|WP_Taxonomy[]) The names or objects of all taxonomies of `$object_type`.
Defined at: - Introduced in WordPress: 2.3.0
- Deprecated in WordPress: —
Description
Returns 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' )