Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created December 9, 2015 09:12
Show Gist options
  • Save celticwebdesign/2e59c8a030807ec7de00 to your computer and use it in GitHub Desktop.
Save celticwebdesign/2e59c8a030807ec7de00 to your computer and use it in GitHub Desktop.
WordPress remove admin bar
// Remove Admin bar
function remove_admin_bar()
{
// return true;
if (!current_user_can('administrator') && !is_admin()) {
return false;
} else {
return true;
}
}
add_filter('show_admin_bar', 'remove_admin_bar'); // Remove Admin bar
// add to functions.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment