Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created June 7, 2021 12:09
Show Gist options
  • Select an option

  • Save wbcomdev/8d3e5371f4bddca71bcd20e69891b217 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8d3e5371f4bddca71bcd20e69891b217 to your computer and use it in GitHub Desktop.
<?php
/**
* Disable WordPress search.
*/
function wbcom_remove_search_widget() {
unregister_widget( 'WP_Widget_Search' );
}
add_action( 'widgets_init', 'wbcom_remove_search_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment