Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 25, 2020 17:12
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/fdb15189c7cb88be9520fb3fe4307b43 to your computer and use it in GitHub Desktop.
Save jchristopher/fdb15189c7cb88be9520fb3fe4307b43 to your computer and use it in GitHub Desktop.
Use a supplemental SearchWP Engine for BetterDocs searches
<?php
// Use a supplemental SearchWP Engine for BetterDocs searches.
add_filter( 'searchwp_betterdocs_engine', function( $engine, $params ) {
return 'my_engine_name';
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment