Disable the admin bar for all users except admin

前端 未结 2 1162
有刺的猬
有刺的猬 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:27

    function is_current_user_administrator() {
        global $current_user;
    
        return !in_array( 'administrator', $current_user->roles );
    }
    
    add_filter( 'show_admin_bar', 'is_current_user_administrator' );
    

提交回复
热议问题