Wordpress:从添加新帖子页面隐藏类别

时间:2014-01-13 16:01:03

标签: wordpress

我想禁止贡献者在帖子中添加类别。我发现的是这个函数remove_post_type_support()。但是在文档中它没有谈论标签或类别。我尝试了remove_post_type_support( 'post', 'category' );remove_post_type_support( 'post', 'categories' );,但都没有效果。

有没有办法这样做?

1 个答案:

答案 0 :(得分:4)

试试这个,它是未经测试,但我认为它会起作用。

只需从帖子类型中取消注册分类:register_taxonomy用于创建和修改。

将它放在你的function.php文件中

if ( current_user_can('contributor') )

 function contributors_unregister_categories() {
    register_taxonomy( 'category', array() );
 }
 add_action( 'init', 'contributors_unregister_categories' );

}