Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created March 10, 2013 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebEndevSnippets/5126553 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/5126553 to your computer and use it in GitHub Desktop.
WordPress: Hide Toolbar (Admin Bar) on front end for all except Administrators
add_filter( 'show_admin_bar' , 'webendev_hide_admin_bar');
/**
* Hide Toolbar (Admin Bar) on front end for all except Administrators
*
*/
function webendev_hide_admin_bar($content) {
return ( current_user_can( 'administrator' ) ) ? $content : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment