Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 20, 2019 14:46
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/df271e694610458c5403d0095e958715 to your computer and use it in GitHub Desktop.
Save jchristopher/df271e694610458c5403d0095e958715 to your computer and use it in GitHub Desktop.
Adjust the maximum weight in SearchWP's engine configuration UI
<?php
// Increase the maximum available SearchWP weight to 500
function my_searchwp_weight_max( $weight ) {
return 500;
}
add_filter( 'searchwp_weight_max', 'my_searchwp_weight_max' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment