How Can I Disable WordPress Admin Bar For Subscribers

How can I disable wordpress admin bar for all users except administers ??

You can try following codes

add_action( 'init', 'blockusers_init' );

function blockusers_init() {

    if (! current_user_can( 'administrator' )) {
        add_filter( 'show_admin_bar', '__return_false' );
    }
}
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments