acf_get_raw_taxonomy()ACF 6.1

Retrieves a raw ACF taxonomy.

Хуков нет.

Возвращает

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

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

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

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

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

Код acf_get_raw_taxonomy() ACF 6.4.2

function acf_get_raw_taxonomy( $id ) {
	return acf_get_raw_internal_post_type( $id, 'acf-taxonomy' );
}