个性化阅读
专注于IT技术分析

如何为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


我认为插件”将类别添加到页面”将帮助你添加页面类别。

赞(0)
未经允许不得转载:srcmini » 如何为WP中的页面添加类别?

评论 抢沙发

评论前必须登录!