我刚刚将我所有的博客帖子都转换为CPT,因为我需要它们具有层次结构。问题是,我为所有的帖子都分配了类别。如何在我的CPT中使用标准WordPress类别?
我尝试添加\'taxonomies\' => array(\'category\'),
到register_post_type
功能,但不起作用。我试过了register_taxonomy_for_object_type( \'category\', \'illustrations\' )
这也没用。
有什么建议吗?
更新:感谢所有人的回复,但如上所述,我两次都试过了\'taxonomies\' => array(\'category\')
和\'taxonomies\' => array(\'category\'),
两者都不起作用。
下面是整个register\\u post\\u type函数-带有“taxonomies”参数:
/* Register the \'Illustrations\' post type */
register_post_type(
\'illustrations\',
array(
\'label\' => \'illustrations\',
\'description\' => \'\',
\'public\' => true,
\'menu_icon\' => get_bloginfo( \'template_directory\' ) . \'/images/help-icon.png\',
\'show_ui\' => true,
\'show_in_menu\' => true,
\'capability_type\' => \'post\',
\'taxonomies\' => array( \'category\' ),
\'has_archive\' => true,
\'hierarchical\' => true,
\'rewrite\' => array( \'slug\' => \'\' ),
\'query_var\' => true,
\'supports\' => array( \'title\', \'editor\', \'custom-fields\', \'thumbnail\', \'page-attributes\', \'revisions\', \'comments\',\'author\' ),
\'labels\' => array (
\'name\' => \'Illustrations\',
\'singular_name\' => \'Illustration\',
\'menu_name\' => \'Illustrations\',
\'add_new\' => \'Add Illustration\',
\'add_new_item\' => \'Add new Illustration\',
\'edit\' => \'Edit\',
\'edit_item\' => \'Edit illustration\',
\'new_item\' => \'New illustration\',
\'view\' => \'View illustration\',
\'view_item\' => \'View illustration\',
\'search_items\' => \'Search illustrations\',
\'not_found\' => \'No Illustrations Found\',
\'not_found_in_trash\' => \'No Illustrations Found in Trash\',
\'parent\' => \'Parent Illustration\',
), ) );
register_taxonomy_for_object_type( \'category\', \'illustrations\' );