WPSEO_Primary_Term_Admin::generate_primary_term_taxonomies()
Generates the primary term taxonomies.
Метод класса: WPSEO_Primary_Term_Admin{}
Хуки из метода
Возвращает
Массив
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->generate_primary_term_taxonomies( $post_id );
- $post_id(int) (обязательный)
- ID of the post.
Код WPSEO_Primary_Term_Admin::generate_primary_term_taxonomies() WPSEO Primary Term Admin::generate primary term taxonomies Yoast 24.0
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. * * @param 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; }