Created
June 7, 2021 12:09
-
-
Save wbcomdev/8d3e5371f4bddca71bcd20e69891b217 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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