如何在WP中添加页面类别?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WP中添加页面类别?相关的知识,希望对你有一定的参考价值。
有没有办法为每个页面添加类别。我问它,因为我只看到帖子的类别选项。
答案
您可以在theme.php中的主题文件夹中添加以下代码:
function myplugin_settings() {
// Add tag metabox to page
register_taxonomy_for_object_type('post_tag', 'page');
// Add category metabox to page
register_taxonomy_for_object_type('category', 'page');
}
// Add to the admin_init hook of your theme functions.php file
add_action( 'init', 'myplugin_settings' );
另一答案
我认为插件Add Category to Pages将帮助您添加页面类别。
以上是关于如何在WP中添加页面类别?的主要内容,如果未能解决你的问题,请参考以下文章