Skip to content

Instantly share code, notes, and snippets.

@flowdee
Created March 31, 2014 12:07
Show Gist options
  • Save flowdee/be87518b3b01b7981201 to your computer and use it in GitHub Desktop.
Save flowdee/be87518b3b01b7981201 to your computer and use it in GitHub Desktop.
Remove & hide WP Admin Access / Bar
// Remove dashboard access for normal users
if (!current_user_can('manage_options')) {
add_filter('show_admin_bar', '__return_false');
}
add_action('admin_init', function () {
if (!current_user_can('manage_options') && $_SERVER['DOING_AJAX'] != '/wp-admin/admin-ajax.php') {
wp_redirect(home_url()); exit;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment