Skip to content

Instantly share code, notes, and snippets.

@msaari
Created November 24, 2017 15:09
Show Gist options
  • Select an option

  • Save msaari/4e87867aa33f5f9436ba051fe7e88a3d to your computer and use it in GitHub Desktop.

Select an option

Save msaari/4e87867aa33f5f9436ba051fe7e88a3d to your computer and use it in GitHub Desktop.
Looser fuzzy query
<?php
add_filter('relevanssi_fuzzy_query', 'rlv_loose_fuzzy');
function rlv_loose_fuzzy($fuzzy) {
return "(term LIKE '%#term#%')";
}
?>
@jayeshkoshiya15
Copy link

thank you very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment