最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Remove WP Admin Menu Items by User Role

programmeradmin1浏览0评论

How do I make it so that a menu on the WP Admin menu bar is only visible to specified user roles?

I have this code which works to remove WP Admin menu items from all users. Is there any way to customize it so that only certain user roles can view these menu item? Thank you!

function shapeSpace_remove_toolbar_menu() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('site-name');
}
add_action('wp_before_admin_bar_render', 'shapeSpace_remove_toolbar_menu', 999);

How do I make it so that a menu on the WP Admin menu bar is only visible to specified user roles?

I have this code which works to remove WP Admin menu items from all users. Is there any way to customize it so that only certain user roles can view these menu item? Thank you!

function shapeSpace_remove_toolbar_menu() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('site-name');
}
add_action('wp_before_admin_bar_render', 'shapeSpace_remove_toolbar_menu', 999);
Share Improve this question asked Mar 8, 2020 at 1:38 deleted-userdeleted-user 312 bronze badges 1
  • if ( ! current_user_can('manage_options') ) { $wp_admin_bar->remove_menu( 'site-name' ); } will display the Site name menu item to only the administrator users. – Mayeenul Islam Commented Mar 8, 2020 at 4:13
Add a comment  | 

1 Answer 1

Reset to default 1
function shapeSpace_remove_toolbar_menu() {
    global $wp_admin_bar;
    // remove menu for editor and author        
    if( current_user_can( 'editor' ) || current_user_can( 'author' )  ){
         $wp_admin_bar->remove_menu('site-name');
       }
 }
add_action('wp_before_admin_bar_render', 'shapeSpace_remove_toolbar_menu', 999);

All Roles:

current_user_can( 'administrator' )
current_user_can( 'editor' )
current_user_can( 'author' )
current_user_can( 'contributor' )
current_user_can( 'subscriber' )
发布评论

评论列表(0)

  1. 暂无评论