jdsteinbach
10/27/2015 - 10:27 PM

Add custom taxonomies to the WP-API

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 );