Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Created July 12, 2015 20:19
Show Gist options
  • Save webmasterninjay/06a2202ffdb71a0883c2 to your computer and use it in GitHub Desktop.
Save webmasterninjay/06a2202ffdb71a0883c2 to your computer and use it in GitHub Desktop.
WordPress: Disable admin bar for non-admin user
<?php
//* Disable admin bar for non-admin user
function themeblvd_disable_admin_bar() {
if( ! current_user_can('edit_posts') )
add_filter('show_admin_bar', '__return_false');
}
add_action( 'after_setup_theme', 'themeblvd_disable_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment