如何为WP中的页面添加类别()

有没有办法为每个页面添加类别。我问这个问题是因为我只看到帖子的类别选项。
#1你可以在你的主题文件夹中的functions.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' );

#2【如何为WP中的页面添加类别()】我认为插件” 将类别添加到页面” 将帮助你添加页面类别。

    推荐阅读