Skip to content

Instantly share code, notes, and snippets.

@edheltzel
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save edheltzel/4e70da8c405e26c42833 to your computer and use it in GitHub Desktop.

Select an option

Save edheltzel/4e70da8c405e26c42833 to your computer and use it in GitHub Desktop.
Disable the Wordpress Admin Bar for ALL Users except Admin
<?php
add_action('after_setup_theme', 'rdm_remove_admin_bar');
function rdm_remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment