Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 27, 2020 12:27
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/1f3902621e494b80608b45b5cbe419a6 to your computer and use it in GitHub Desktop.
Save jchristopher/1f3902621e494b80608b45b5cbe419a6 to your computer and use it in GitHub Desktop.
Customize the Engine used for a SearchWP Query
<?php
// Customize the Engine used for a SearchWP Query.
add_filter( 'searchwp\query\args', function( $args, $query ) {
$args['engine'] = 'supplemental'; // Engine name.
return $args;
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment