Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 05:32
Show Gist options
  • Select an option

  • Save spencejs/5219171 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5219171 to your computer and use it in GitHub Desktop.
Hide Admin Bar Except For Administrators In Wordpress
//Hide Admin Bar Except For Administrators
function my_function_admin_bar($content) {
return ( current_user_can("administrator") ) ? $content : false;
}
add_filter( 'show_admin_bar' , 'my_function_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment