Skip to content

Instantly share code, notes, and snippets.

@crewstyle
Last active April 20, 2016 08:17
Show Gist options
  • Save crewstyle/9ca3631692190112ffe8fc91118b2f81 to your computer and use it in GitHub Desktop.
Save crewstyle/9ca3631692190112ffe8fc91118b2f81 to your computer and use it in GitHub Desktop.
WordPress ~ Remove admin bar - #frontend #optimisation
<?php
//Remove admin bar since WP v3.1
add_filter('show_admin_bar', '__return_false');
remove_action('init', 'wp_admin_bar_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment