我想禁止贡献者在帖子中添加类别。我发现的是这个函数remove_post_type_support()
。但是在文档中它没有谈论标签或类别。我尝试了remove_post_type_support( 'post', 'category' );
和remove_post_type_support( 'post', 'categories' );
,但都没有效果。
有没有办法这样做?
答案 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' );
}