searchwp\query\partial_matches\fuzzy\minimum_length
Since: 4.0.0
Table of Contents
Control the minimum length for fuzzy matches.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Integer | $length |
3 (searchwp\tokens\minimum_length is applied before this hook) |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Customize the minimum length of fuzzy match tokens
Customize the minimum length of fuzzy match tokens
<?php | |
// Customize the minimum length of fuzzy match tokens in SearchWP. | |
add_filter( | |
'searchwp\query\partial_matches\fuzzy\minimum_length', | |
function( $length ) { | |
return 5; | |
} | |
); |