如何在WP-JSON v2 API中获取自定义帖子类型的类别?

时间:2017-12-06 07:37:12

标签: wordpress wordpress-rest-api

我正在尝试获取自定义帖子类型的类别但无法找到任何解决方案。 The WP REST API documentation仅返回博文的类别。

自定义帖子API:https://themographics.com/wordpress/service-providers/wp-json/wp/v2/sp_categories

类别API:https://themographics.com/wordpress/service-providers/wp-json/wp/v2/categories [返回博客帖子类型的默认类别]

有什么办法吗? https://themographics.com/wordpress/service-providers/wp-json/wp/v2/sp_categories/categories

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

你可以这样做:

add_action('init', 'json_handler');
function json_handler(){
    $categories = get_terms( 'my_cat', 'orderby=count&hide_empty=0' );
    if( ! is_wp_error( $categories ) ) {
        // encode the $categories array as json
        print_r( json_encode( $categories ) );
    }
}