Skip to content

Instantly share code, notes, and snippets.

Created January 20, 2016 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/0f845dd15a7cf93f7ba1 to your computer and use it in GitHub Desktop.
Save anonymous/0f845dd15a7cf93f7ba1 to your computer and use it in GitHub Desktop.
<?php
// WordPress Suchfunktion vollständig abschalten
function ah_filter_query( $query, $error = true ) {
if ( is_search() ) {
$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', 'ah_filter_query' );
add_filter( 'get_search_form', create_function( '$a', "return null;" ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment