Skip to content

Instantly share code, notes, and snippets.

@JeppeSigaard
Created April 13, 2017 10:56
Show Gist options
  • Save JeppeSigaard/856f5d5e5fec8ce35a992a735eb14ad0 to your computer and use it in GitHub Desktop.
Save JeppeSigaard/856f5d5e5fec8ce35a992a735eb14ad0 to your computer and use it in GitHub Desktop.
<?php /* Plugin name: Fjern admin bar */
add_action('init',function(){
if(!is_user_logged_in()){
add_filter( 'show_admin_bar', '__return_false' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment