Code-Snippets-Functions/Execute a function on a child site/Advanced Woo Search/allow-misspelling-fix-for-words-with-one-typo.txt

5 lines
175 B
Text

apply_filters( 'aws_fuzzy_params', 'my_aws_fuzzy_params' );
function my_aws_fuzzy_params( $fuzzy_params ) {
$fuzzy_params['min_distance'] = 1;
return $fuzzy_params;
}