You appear to be a bot. Output may be restricted
Description
Generates the primary term taxonomies.
Usage
$array = WPSEO_Primary_Term_Admin::generate_primary_term_taxonomies( $post_id );
Parameters
- $post_id
- ( int ) required – ID of the post.
Returns
array
Source
File name: wordpress-seo/admin/class-primary-term-admin.php
Lines:
1 to 18 of 18
protected function generate_primary_term_taxonomies( $post_id ) { $post_type = get_post_type( $post_id ); $all_taxonomies = get_object_taxonomies( $post_type, 'objects' ); $all_taxonomies = array_filter( $all_taxonomies, [ $this, 'filter_hierarchical_taxonomies' ] ); /** * Filters which taxonomies for which the user can choose the primary term. * * @api array $taxonomies An array of taxonomy objects that are primary_term enabled. * * @param string $post_type The post type for which to filter the taxonomies. * @param array $all_taxonomies All taxonomies for this post types, even ones that don't have primary term * enabled. */ $taxonomies = (array) apply_filters( 'wpseo_primary_term_taxonomies', $all_taxonomies, $post_type, $all_taxonomies ); return $taxonomies; }