Created
August 15, 2012 20:43
-
-
Save brentini/3363471 to your computer and use it in GitHub Desktop.
WordPress: Remove Admin Bar from Front End Site
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
//Completely Removes Admin Bar from Front End Site | |
remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 ); // For front end | |
// CSS override for the frontend | |
function remove_admin_bar_style_frontend() { | |
echo ''; | |
} | |
add_filter('wp_head','remove_admin_bar_style_frontend', 99); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment