Skip to content

Instantly share code, notes, and snippets.

@JeroenSormani
Created March 19, 2018 05:08
Hide the WordPress admin bar for non-admins
<?php // For implementation instructions see: https://aceplugins.com/how-to-add-a-code-snippet/
/**
* Hide admin bar for non-admins
*/
function js_hide_admin_bar( $show ) {
if ( ! current_user_can( 'administrator' ) ) {
return false;
}
return $show;
}
add_filter( 'show_admin_bar', 'js_hide_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment