如何隐藏Wordpress中特定角色的“提交审阅”按钮?

时间:2019-04-18 00:18:07

标签: wordpress

当前,我有两个角色,分别是Contributor和Editor,这两个角色都可以提交以供审阅,但是我只希望Editor具有此按钮并为Contributor隐藏。

1 个答案:

答案 0 :(得分:1)

要为特定角色隐藏它,可以使用current_user_can()将它包装在if条件中

<?php if( current_user_can('editor') ) {  ?> 
    // code here for the editor
<?php } ?>