Skip to content

Instantly share code, notes, and snippets.

@devinsays
Last active February 7, 2021 15:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save devinsays/c45d35e2a7020d47833e to your computer and use it in GitHub Desktop.
Save devinsays/c45d35e2a7020d47833e 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