Add your own JOIN to the parent query of SearchWP's search algorithm
This file contains 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_query_main_join( $sql, $engine ) { | |
// modify $sql to your liking | |
return $sql; | |
} | |
add_filter( 'searchwp_query_main_join', 'my_searchwp_query_main_join', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment