Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created April 12, 2022 16:35
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/2d978a9f027946fd16493b10ef84f500 to your computer and use it in GitHub Desktop.
Save searchwpgists/2d978a9f027946fd16493b10ef84f500 to your computer and use it in GitHub Desktop.
Customize the SearchWP Engine used for applicable REST requests
<?php
// @link https://searchwp.com/documentation/rest-api/
// Customize the SearchWP Engine used for applicable REST requests.
add_filter( 'searchwp\rest\engine', function( $engine, $args ) {
return 'my_rest_engine_name';
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment