Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active April 26, 2019 14: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/7852314 to your computer and use it in GitHub Desktop.
Save jchristopher/7852314 to your computer and use it in GitHub Desktop.
Replace the default SearchWP stopwords with your own
<?php
function my_searchwp_stopwords( $terms ) {
// replace the default SearchWP default common words with 'lorem', 'ipsum', and 'dolor' ONLY
$terms = array( 'lorem', 'ipsum', 'dolor' );
return $terms;
}
add_filter( 'searchwp_stopwords', 'my_searchwp_stopwords' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment