acf_get_acf_taxonomies()ACF 6.1

Returns an array of ACF taxonomies for the given $filter.

Хуков нет.

Возвращает

Массив.

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

acf_get_acf_taxonomies( $filter );
$filter(массив)
An array of args to filter results by.
По умолчанию: array()

Список изменений

С версии 6.1 Введена.

Код acf_get_acf_taxonomies() ACF 6.4.2

function acf_get_acf_taxonomies( array $filter = array() ) {
	return acf_get_internal_post_type_posts( 'acf-taxonomy', $filter );
}