acf_get_raw_taxonomy()
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() 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' );
}