Created
November 7, 2014 16:24
-
-
Save JiveDig/6a8c1e8f3000fbf4fb47 to your computer and use it in GitHub Desktop.
Remove toolbar from front end
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