Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 18, 2015 13:47
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 jchristopher/f8aaa55eaabbc647fc58 to your computer and use it in GitHub Desktop.
Save jchristopher/f8aaa55eaabbc647fc58 to your computer and use it in GitHub Desktop.
Prevent SearchWP from initializing
<?php
// prevent SearchWP from initializing itself unless it's a search page
function my_searchwp_init() {
return is_search();
}
add_filter( 'searchwp_init', 'my_searchwp_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment