删除或隐藏特定用户或角色的管理菜单链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除或隐藏特定用户或角色的管理菜单链接相关的知识,希望对你有一定的参考价值。
In this example I used the "Members" plugin to add a capability called "hide_jobs" and that was the trigger to hide certain admin menus and also hide the "Right Now" dashboard widget.
if (current_user_can('hide_jobs')) { add_action( 'admin_menu', 'my_remove_menu_jobs' ); function my_remove_menu_jobs() { remove_menu_page('edit.php?post_type=solution'); remove_meta_box('dashboard_right_now', 'dashboard', 'normal'); // right now } }
以上是关于删除或隐藏特定用户或角色的管理菜单链接的主要内容,如果未能解决你的问题,请参考以下文章
为 Woocommerce 中的特定用户角色自定义我的帐户新菜单项