We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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, ) ); }
The text was updated successfully, but these errors were encountered:
Seems that there's a PR that addresses this issue: #42
Sorry, something went wrong.
No branches or pull requests
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, ) ); }
The text was updated successfully, but these errors were encountered: