Change the number of accepted search terms for a specific SearchWP supplemental engine
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 | |
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