Skip to content

Instantly share code, notes, and snippets.

@raftaar1191
Created October 23, 2019 11:14
Show Gist options
  • Save raftaar1191/ee030ad811b159ae7dd9f03ddde0dc0e to your computer and use it in GitHub Desktop.
Save raftaar1191/ee030ad811b159ae7dd9f03ddde0dc0e to your computer and use it in GitHub Desktop.
Hide the Wp-admin bar for all the user other then admin
/**
* Hide the Wp-admin for all the user other then admin
*/
function buddyboss_child_wp_head_hide_admin_bar() {
if ( is_user_logged_in() ) {
global $current_user;
$roles = (array) $current_user->roles;
if ( ! in_array( 'administrator', $roles ) ) {
?>
<style>
#wpadminbar {
display: none!important;
}
.site-header {
border-top-width: 0 !important;
}
html {
margin-top: 0 !important;
}
</style>
<?php
}
}
}
add_action( 'wp_head', 'buddyboss_child_wp_head_hide_admin_bar', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment