acf_get_raw_taxonomy()ACF 6.1

Retrieves a raw ACF taxonomy.

No Hooks.

Returns

Array|false. The taxonomy array.

Usage

acf_get_raw_taxonomy( $id );
$id(int|string) (required)
The post ID.

Changelog

Since 6.1 Introduced.

acf_get_raw_taxonomy() code ACF 6.8.8

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