SearchWP allows you to filter the exact WHERE clause fired in the main 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_where( $clause, $engine ) { | |
// manipulate $clause to your liking and return it | |
return $clause; | |
} | |
add_filter( 'searchwp_where', 'my_searchwp_where', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment