Skip to content

Instantly share code, notes, and snippets.

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