WP_Sitemaps_Taxonomies::get_object_subtypes()
Returns all public, registered taxonomies.
Method of the class: WP_Sitemaps_Taxonomies{}
Hooks from the method
Return
WP_Taxonomy[]
. Array of registered taxonomy objects keyed by their name.
Usage
$WP_Sitemaps_Taxonomies = new WP_Sitemaps_Taxonomies(); $WP_Sitemaps_Taxonomies->get_object_subtypes();
Changelog
Since 5.5.0 | Introduced. |
WP_Sitemaps_Taxonomies::get_object_subtypes() WP Sitemaps Taxonomies::get object subtypes code WP 6.6.2
public function get_object_subtypes() { $taxonomies = get_taxonomies( array( 'public' => true ), 'objects' ); $taxonomies = array_filter( $taxonomies, 'is_taxonomy_viewable' ); /** * Filters the list of taxonomy object subtypes available within the sitemap. * * @since 5.5.0 * * @param WP_Taxonomy[] $taxonomies Array of registered taxonomy objects keyed by their name. */ return apply_filters( 'wp_sitemaps_taxonomies', $taxonomies ); }