Skip to content

Instantly share code, notes, and snippets.

@cgi-caesar
Created February 8, 2018 13:05
Show Gist options
  • Save cgi-caesar/1f38a13cc25755f9dd129baad31223d8 to your computer and use it in GitHub Desktop.
Save cgi-caesar/1f38a13cc25755f9dd129baad31223d8 to your computer and use it in GitHub Desktop.
WordPress: remove admin bar for non admin users
<?php
add_action('after_setup_theme', function() {
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