如果要添加默认分类法以外的分类法,则需要使用创建另一个分类法register_taxonomy()因为默认情况下category
和post_tag
创建并关联到post
.
在中添加以下代码functions.php
// \'post\' is the post type name that you want to associate this new taxonomy to.
function q363839_create_new_tax() {
$args = array(
// please refer to the link above and add your settings here according to the need
);
register_taxonomy( \'section_category\', \'post\', $args );
}
add_action( \'init\', \'q363839_create_new_tax\' );
如果您正在使用中的插件创建分类法。确保您将以下值选择为true,以便它将显示在您的自定义帖子类型中,例如Artwork
Admin Column
Show Admin Column - True
编辑:关于主题干扰,我突然想到了如何解决主题造成的问题。你可以试着
在代码中搜索register_taxonomy(), 请参阅分类的名称取消注册unregister_taxonomy()在CPT UI中创建分类法,或
最好的情况是,您联系主题作者,因为寻求帮助的作者最了解主题作者,并将为您提供支持。
然后,您可以免受主题的干扰,前提是您确保从主题中删除分类法后不会破坏模板。如果它坏了,那么您只需转到屏幕选项来隐藏默认分类法,并使用您自己的分类法。