Skip to content

Instantly share code, notes, and snippets.

@theodorocaliari
Last active December 19, 2015 07:09
Show Gist options
  • Save theodorocaliari/5917115 to your computer and use it in GitHub Desktop.
Save theodorocaliari/5917115 to your computer and use it in GitHub Desktop.
Remove Wordpress admin top bar in front-end for all users.
<?php
//http://www.paulund.co.uk/remove-the-wordpress-admin-bar
if (!current_user_can( 'manage_options' )){
add_filter( 'show_admin_bar', '__return_false' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment