Skip to content

Instantly share code, notes, and snippets.

@yuliyang
Last active April 14, 2017 02:35
Show Gist options
  • Save yuliyang/9040a9475afbe1edd34380412762f36c to your computer and use it in GitHub Desktop.
Save yuliyang/9040a9475afbe1edd34380412762f36c to your computer and use it in GitHub Desktop.
[WordPress] Disable admin bar for logged in users
<?php
// Disable admin bar
function disable_admin_bar() {
if ( ! current_user_can('edit_posts') ) {
add_filter('show_admin_bar', '__return_false');
}
}
add_action( 'after_setup_theme', 'disable_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment