Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 16:34
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/e1f0d815ae4c41027957 to your computer and use it in GitHub Desktop.
Save jchristopher/e1f0d815ae4c41027957 to your computer and use it in GitHub Desktop.
Change the number of accepted search terms for a specific SearchWP supplemental engine
<?php
function my_searchwp_max_search_terms_my_engine( $num_terms) {
return 10; // allow 10 search terms for 'My Engine'
}
add_filter( 'searchwp_max_search_terms_my_engine', 'my_searchwp_max_search_terms_my_engine' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment