我已将分类body
注册到自定义帖子类型vehicles
:
add_action( 'init', 'create_body_hierarchical_taxonomy', 0 );
function create_body_hierarchical_taxonomy() {
$labels = array(
'name' => _x( 'Body Style', 'taxonomy general name' ),
'singular_name' => _x( 'Body Style', 'taxonomy singular name' ),
'search_items' => __( 'Search Body Styles' ),
'all_items' => __( 'All Body Styles' ),
'parent_item' => __( 'Parent Body Style' ),
'parent_item_colon' => __( 'Parent Body Style:' ),
'edit_item' => __( 'Edit Body Style' ),
'update_item' => __( 'Update Body Style' ),
'add_new_item' => __( 'Add New Body Style' ),
'new_item_name' => __( 'New Body Style Name' ),
'menu_name' => __( 'Body Styles' ),
);
register_taxonomy('body',array('vehicles'), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'body' ),
));
}
分类法显示为vehicles
帖子类型的管理区域中的列,但我需要对其进行排序。我在网上阅读的所有内容似乎都与从自定义字段元数据创建可排序列有关,并试图取消这些列是一项徒劳无功的任务。
我可以看到使用manage_edit-{CPT}_sortable_columns
应该是一个起点,但我不知道该去哪里?
有人能指出我正确的方向吗?