acf_get_taxonomy()
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 get taxonomy ACF 6.4.2
function acf_get_taxonomy( $id ) {
return acf_get_internal_post_type( $id, 'acf-taxonomy' );
}