-
-
Save searchwpgists/9a20381a1e8e56f0d1be262c2373bb79 to your computer and use it in GitHub Desktop.
Customize the SearchWP engine used in EDD Integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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