I had the issue where custom taxonomies weren't showing the 'acf' field to retrieve data from custom fields.
Would you be able to patch your plugin to include this at some point.
Other than that, it's great plugin. 🙌🏻
I've added a suggested temporary fix in place for anyone with a similar problem:
$types = get_taxonomies(array( 'public' => true, '_builtin' => false )); foreach($types as $key => $type) { register_rest_field( $type, 'acf', array( 'get_callback' => array( $this, 'addACFDataTermV2cb' ), 'update_callback' => null, 'schema' => null, ) ); }
I had the issue where custom taxonomies weren't showing the 'acf' field to retrieve data from custom fields.
Would you be able to patch your plugin to include this at some point.
Other than that, it's great plugin. 🙌🏻
I've added a suggested temporary fix in place for anyone with a similar problem:
$types = get_taxonomies(array( 'public' => true, '_builtin' => false )); foreach($types as $key => $type) { register_rest_field( $type, 'acf', array( 'get_callback' => array( $this, 'addACFDataTermV2cb' ), 'update_callback' => null, 'schema' => null, ) ); }