Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created August 22, 2024 11:33
Show Gist options
  • Select an option

  • Save searchwpgists/9a20381a1e8e56f0d1be262c2373bb79 to your computer and use it in GitHub Desktop.

Select an option

Save searchwpgists/9a20381a1e8e56f0d1be262c2373bb79 to your computer and use it in GitHub Desktop.
Customize the SearchWP engine used in EDD Integration
<?php
function my_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