如何在WP中添加页面类别?

问题描述 投票:0回答:2

有没有办法为每个页面添加类别。我问它,因为我只看到帖子的类别选项。

wordpress wordpress-theming custom-wordpress-pages
2个回答
1
投票

您可以在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' );

0
投票

我认为插件Add Category to Pages将帮助您添加页面类别。

© www.soinside.com 2019 - 2024. All rights reserved.