Skip to content

Instantly share code, notes, and snippets.

@brentini
Created August 15, 2012 20:43
Show Gist options
  • Save brentini/3363471 to your computer and use it in GitHub Desktop.
Save brentini/3363471 to your computer and use it in GitHub Desktop.
WordPress: Remove Admin Bar from Front End Site
//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