Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 29, 2022 15:09
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 searchwpgists/09bc900ac49651c2f0c7cb41a70b20ac to your computer and use it in GitHub Desktop.
Save searchwpgists/09bc900ac49651c2f0c7cb41a70b20ac to your computer and use it in GitHub Desktop.
Customize available Engine Source Attribute weights in SearchWP
<?php
// Customize available Engine Source Attribute weights in SearchWP.
add_filter( 'searchwp\weights', function( $weights ) {
// Make available only two weight choices.
return [
1 => 'Lowest',
1000 => 'Highest',
];
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment