0
Locations라는 사용자 지정 분류 체계를 만들었지 만 모든 것이 잘 작동하지만 taxonomy를 추가 할 때마다 분류 체계 이름이 범주가 아닌 위치, Like Add New category
등과 같이 wp-admin에서 표시됩니다.Wordpress 사용자 정의 분류 표시 이름 문제
function reg_location_taxonomy() {
register_taxonomy('location', array('product'), array('hierarchical' => true, 'label' => 'Locations', 'singular_label' => 'Location', 'rewrite' => true));
// register_taxonomy_for_object_type('location', 'product');
}
add_action('init', 'reg_location_taxonomy', 0);