Skip to content

Instantly share code, notes, and snippets.

@brunopulis
Created October 3, 2015 17:33
Show Gist options
  • Save brunopulis/f8dccf466b49af505672 to your computer and use it in GitHub Desktop.
Save brunopulis/f8dccf466b49af505672 to your computer and use it in GitHub Desktop.
Remove Admin Toolbar on Wordpress
// Call the action
remove_action('init', 'wp_admin_bar_init');
function my_function_admin_bar(){
return false;
}
add_filter( 'show_admin_bar' , 'my_function_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment