acf_get_taxonomy()ACF 1.0

Get an ACF taxonomy as an array

Хуков нет.

Возвращает

Массив|false. The taxonomy object.

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

acf_get_taxonomy( $id );
$id(int|строка) (обязательный)
The post ID being queried.

Код acf_get_taxonomy() ACF 6.4.2

function acf_get_taxonomy( $id ) {
	return acf_get_internal_post_type( $id, 'acf-taxonomy' );
}