Guest User

Untitled

a guest
Feb 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. function searchwp_partial_matching_aggressive( $return, $args ) {
  4. // $args contains information about this request
  5. // - engine
  6.  
  7. // TODO: customize $return to match whether matching should be aggressive
  8. return $return;
  9. }
  10.  
  11. add_filter( 'searchwp_partial_matching_aggressive', 'my_searchwp_partial_matching_aggressive', 10, 2 );
Add Comment
Please, Sign In to add comment