Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active November 7, 2019 17:33
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 mikeyarce/235cf03e4ed65d5f2ac71c68ada515b8 to your computer and use it in GitHub Desktop.
Save mikeyarce/235cf03e4ed65d5f2ac71c68ada515b8 to your computer and use it in GitHub Desktop.
Disable WordPress Search #core
<?php
function ma_vip_unresolve_search() {
global $wp_query;
if ( $wp_query->is_search ) {
$wp_query->is_404 = true;
}
}
add_action( 'template_redirect', 'ma_vip_unresolve_search' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment