Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 22, 2015 14:26
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/ebd65e045eb90427571a to your computer and use it in GitHub Desktop.
Save jchristopher/ebd65e045eb90427571a to your computer and use it in GitHub Desktop.
Define a minimum weight for an acceptable SearchWP result
<?php
function my_searchwp_weight_threshold() {
// only accept results with a weight of 10 or more
return 10;
}
add_filter( 'searchwp_weight_threshold', 'my_searchwp_weight_threshold' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment