标签: wordpress
当前,我有两个角色,分别是Contributor和Editor,这两个角色都可以提交以供审阅,但是我只希望Editor具有此按钮并为Contributor隐藏。
答案 0 :(得分:1)
要为特定角色隐藏它,可以使用current_user_can()将它包装在if条件中
<?php if( current_user_can('editor') ) { ?> // code here for the editor <?php } ?>