Disable the admin bar for all users except admin

前端 未结 2 1163
有刺的猬
有刺的猬 2021-01-15 17:13

I have installed WordPress and BudyPress. I want to disable the admin bar which appears on the top for all users.

Can somebody tell me how to do that correctly?

2条回答
  •  既然无缘
    2021-01-15 17:30

    In your functions.php file, you can add one of the following code snippets to get the indicated results:

    // Only display to administrators

     add_action('after_setup_theme', 'remove_admin_bar');
    
     function remove_admin_bar() {
         if (!current_user_can('administrator') && !is_admin()) {
            show_admin_bar(false);
         }
     }
    

提交回复
热议问题