Skip to content

Instantly share code, notes, and snippets.

@pareshsojitra
Forked from devinsays/hide-admin-bar.php
Created February 7, 2021 15:16
Show Gist options
  • Save pareshsojitra/e13fc1276cb6d266857627d7429be97d to your computer and use it in GitHub Desktop.
Save pareshsojitra/e13fc1276cb6d266857627d7429be97d to your computer and use it in GitHub Desktop.
Disables the #wpadmin bar for users without "edit_posts" permissions.
<?php
/**
* Disables the #wpadmin bar for users without "edit_posts" permissions.
*/
function prefix_hide_admin_bar() {
if ( ! current_user_can( 'edit_posts' ) ) {
add_filter( 'show_admin_bar', '__return_false' );
}
}
add_action( 'after_setup_theme', 'prefix_hide_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment