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


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

来源:

https://www.srcmini02.com/65237.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?