mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
175 B
Text
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;
|
|
}
|