-
-
Save luclemo/fbe0a4f4ef9a90fc541b to your computer and use it in GitHub Desktop.
#wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Remove toolbar from frontend and remove CSS that bumps content down | |
add_filter( 'show_admin_bar', 'bhl_hide_admin_bar_from_front_end' ); | |
function bhl_hide_admin_bar_from_front_end(){ | |
if ( ! current_user_can('manage_options') ) { | |
return false; | |
// Remove CSS | |
remove_action( 'wp_head', '_admin_bar_bump_cb' ); | |
} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment