Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created September 8, 2014 12:22
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/1e23098c562b8f7f7b65 to your computer and use it in GitHub Desktop.
Save jchristopher/1e23098c562b8f7f7b65 to your computer and use it in GitHub Desktop.
Modify the endpoint used by SearchWP's indexer
<?php
function my_searchwp_endpoint() {
return 'searchwp'; // will return the equivalent of site_url() . '/searchwp';
}
add_filter( 'searchwp_endpoint', 'my_searchwp_endpoint' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment