Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created February 9, 2022 17:23
Show Gist options
  • Save searchwpgists/6afc8ef280a84eccd852e291468abe38 to your computer and use it in GitHub Desktop.
Save searchwpgists/6afc8ef280a84eccd852e291468abe38 to your computer and use it in GitHub Desktop.
Customize SearchWP Engine used
<?php
// Customize SearchWP Engine used.
add_filter( 'searchwp\native\args', function( $args, $query ) {
$args['engine'] = 'supplemental';
return $args;
}, 15, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment