Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active January 15, 2021 12:42
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/de6f10a4beabda08952cfc3f674ff976 to your computer and use it in GitHub Desktop.
Save jchristopher/de6f10a4beabda08952cfc3f674ff976 to your computer and use it in GitHub Desktop.
Customize the SearchWP Engine used for applicable REST requests
<?php
// 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