0

您好,我有一个 word press 选项页面,我想让所有编辑或以上的用户都能看到它。我的代码如下:

add_menu_page('example', 'example', 'editor', __FILE__, array('example', 'example'));

我尝试过多次粘贴不同的用户角色,甚至用逗号分隔每个用户角色,但这不起作用。这可能吗?

4

1 回答 1

2

相反,使用

if(current_user_can('editor')){
    add_menu_page(..., 'editor', ....);
}elseif(current_user_can('someotherrole')){
    add_menu_page(..., 'someotherrole', ....);
}
于 2012-06-21T18:34:25.267 回答