Yoast\WP\SEO\Helpers

Primary_Term_Helper::filter_hierarchical_taxonomies()protectedYoast 1.0

Returns whether or not a taxonomy is hierarchical.

Метод класса: Primary_Term_Helper{}

Хуков нет.

Возвращает

true|false. True for hierarchical taxonomy.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->filter_hierarchical_taxonomies( $taxonomy );
$taxonomy(stdClass) (обязательный)
Taxonomy object.

Код Primary_Term_Helper::filter_hierarchical_taxonomies() Yoast 24.0

protected function filter_hierarchical_taxonomies( $taxonomy ) {
	return (bool) $taxonomy->hierarchical;
}