Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created July 22, 2015 13:07
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/b14d5002ccf95d39be7a to your computer and use it in GitHub Desktop.
Save jchristopher/b14d5002ccf95d39be7a to your computer and use it in GitHub Desktop.
Customize the SearchWP engine used in EDD Integration
<?php
function searchwp_edd_engine( $engine, $query, $atts ) {
return 'default'; // the name of the engine you want to use for the [downloads] Shortcode
}
add_filter( 'searchwp_edd_engine', 'my_searchwp_edd_engine', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment