Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我有一个 word press 选项页面,我想让所有编辑或以上的用户都能看到它。我的代码如下:
add_menu_page('example', 'example', 'editor', __FILE__, array('example', 'example'));
我尝试过多次粘贴不同的用户角色,甚至用逗号分隔每个用户角色,但这不起作用。这可能吗?
相反,使用
if(current_user_can('editor')){ add_menu_page(..., 'editor', ....); }elseif(current_user_can('someotherrole')){ add_menu_page(..., 'someotherrole', ....); }