简体   繁体   English

在Wordpress的“管理菜单”中,如何隐藏菜单项,但仍然允许所有人访问它?

[英]In the Wordpress Admin Menu, how can I hide a menu item but still allow everyone to have access to it?

I have successfully removed it from view before but a standard user lost access to that page, basically saying they did not have the permissions... 我之前已成功将其从视图中删除,但是一个标准用户失去了对该页面的访问权限,基本上是说他们没有权限...

I want all users to have access to the hidden page.. I just don't want them to be able to see it in the admin menu on the left. 我希望所有用户都可以访问隐藏的页面。.我只是不想让他们能够在左侧的管理菜单中看到它。

Is this possible? 这可能吗?

You can try with the remove_menu_page function : 您可以尝试使用remove_menu_page函数:

add_action( 'admin_menu', 'remove_menus' );

function remove_menus(){
    remove_menu_page( 'profile.php' );
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM