2017-12-18 13 views

답변

0

...이 위의 것보다 약간 다른 질문 ... 당신은 당신이 분류를 정의 된 REST API를 활성화해야

에 응답합니다.

그냥 같이 'show_in_rest_api' => true

뭔가를 추가

<?php 
add_action('init', 'create_book_tax'); 

function create_book_tax() { 
    register_taxonomy(
     'genre', 
     'book', 
     array(
      'label' => __('Genre'), 
      'rewrite' => array('slug' => 'genre'), 
      'hierarchical' => true, 
      'show_in_rest_api' => true // <-- Do This! 
     ) 
    ); 
} 
?>