Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CoachBirgit/14149ada469c0a27da22 to your computer and use it in GitHub Desktop.
Save CoachBirgit/14149ada469c0a27da22 to your computer and use it in GitHub Desktop.
Add custom taxonomies to the WP-API
<?php
function ms_add_tax_to_api() {
$taxonomies = get_taxonomies( '', 'objects' );
foreach( $taxonomies as $taxonomy ) {
$taxonomy->show_in_rest = true;
}
}
add_action( 'init', 'ms_add_tax_to_api', 30 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment