Created
September 11, 2022 07:09
-
-
Save terrytsang/d27c86da844fa7929c1f40ecd44888be to your computer and use it in GitHub Desktop.
Disable WordPress search function
This file contains 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 | |
//add this code into functions.php to disable search | |
function tt_filter_query( $query, $error = true ) { | |
if ( is_search() & !is_admin()) { | |
$query->is_search = false; | |
$query->query_vars['s'] = false; | |
$query->query['s'] = false; | |
// to error | |
if ( $error == true ) | |
$query->is_404 = true; | |
} | |
} | |
add_action( 'parse_query', 'tt_filter_query' ); | |
add_filter( 'get_search_form', function($a) {return null;}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment