Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Last active August 8, 2016 20:16
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 ControlledChaos/15b8bfbdb8c068bca794 to your computer and use it in GitHub Desktop.
Save ControlledChaos/15b8bfbdb8c068bca794 to your computer and use it in GitHub Desktop.
Remove Search from Admin Bar

Remove Search from Admin Bar

WordPress Snippet

<?php
function ccd_disable_adminbar_search() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu( 'search' );
}
add_action( 'wp_before_admin_bar_render', 'ccd_disable_adminbar_search' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment