你的意思是对你的自定义帖子类型有不同的分类法吗?如果是这样,您可以定义自定义分类法,并将此分类法仅应用于所需的帖子类型。如果自定义分类法的“Hierarchy”参数设置为true,则分类法的工作方式将与类别相同。
register_taxonomy(
\'my_taxonomy_name\',
\'my_custom_post_type\',
array(
\'hierarchical\' => true
)
);
//And then
register_taxonomy_for_object_type( \'my_taxonomy_name\', \'my_custom_post_type\' );