Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 27, 2020 13:15
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/9b5475806dfe54ab76269a2490054507 to your computer and use it in GitHub Desktop.
Save jchristopher/9b5475806dfe54ab76269a2490054507 to your computer and use it in GitHub Desktop.
Accept up to 12 search terms in SearchWP
<?php
// Accept up to 12 search terms in SearchWP.
add_filter(
'searchwp\query\tokens\limit',
function( $max, $query ) {
return 12;
},
30, 2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment