Skip to content

Instantly share code, notes, and snippets.

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 trevorgreenleaf/cc468cbe164026987dce796fd0f9876e to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/cc468cbe164026987dce796fd0f9876e to your computer and use it in GitHub Desktop.
Hide wp bar for non admins
add_action('set_current_user', 'cc_hide_admin_bar');
function cc_hide_admin_bar() {
if (!current_user_can('edit_posts')) {
show_admin_bar(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment