Back to Blog

Remove the admin bar from the front-end of WordPress

Published on 22 September 2014

This little snippet removes the admin bar permanently from all users while logged in and viewing the website from the front-end. Personally, I never use it and always turn it off with this little snippet.

// Remove the admin bar from the front end permanently
add_filter( 'show_admin_bar', '__return_false' );
Remove the admin bar from the front-end of WordPress | Phil Owen