SearchWP

searchwp\query\partial_matches\minimum_length

Since: 4.0.0

Table of Contents

Control the minimum length for partial matches.

Parameters

Type Parameter Default Since
Integer $length 3 (searchwp\tokens\minimum_length is applied before this hook) 4.0.0
Array $args
Key Type Value
tokens String[] Tokens for this search
query \SearchWP\Query The Query taking place
4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Customize the minimum length of partial match tokens

Customize the minimum length of partial match tokens

<?php
// Customize the minimum length of partial match tokens in SearchWP.
add_filter( 'searchwp\query\partial_matches\minimum_length', function( $length, $args ) {
return 5;
}, 20, 2 );

How to use this code