Skip to content

Instantly share code, notes, and snippets.

@ooooak
Created July 31, 2015 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooooak/d90414a0403f8fd77af1 to your computer and use it in GitHub Desktop.
Save ooooak/d90414a0403f8fd77af1 to your computer and use it in GitHub Desktop.
remove search bar from admin bar
add_action( 'admin_bar_menu', function($wp_admin_bar){
$wp_admin_bar->remove_menu('search');
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment