acf_get_acf_taxonomies()
Returns an array of ACF taxonomies for the given $filter.
No Hooks.
Returns
Array.
Usage
acf_get_acf_taxonomies( $filter );
- $filter(array)
- An array of args to filter results by.
Default:array()
Changelog
| Since 6.1 | Introduced. |
acf_get_acf_taxonomies() acf get acf taxonomies code ACF 6.8.8
function acf_get_acf_taxonomies( array $filter = array() ) {
return acf_get_internal_post_type_posts( 'acf-taxonomy', $filter );
}