我已经创建了名为 Locations 的自定义分类法,一切正常,但是每当我添加分类法时,到处都将分类法名称显示为类别而不是位置,Like Add New category
依此类推,在 wp-admin
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 );