searchwp\tokens\minimum_length
Seit: 4.0.0
Steuern Sie, was SearchWP als minimale Token-Länge (Suchbegriff) verwendet.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Ganzzahl | $länge |
3 (1, wenn das Kontrollkästchen zum Deaktivieren der Mindestzeichenlänge aktiviert ist) |
4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Mindestzeichenlänge für Tokens (Suchbegriffe) reduzieren
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Reduce SearchWP's minimum character length to 2 (default is 3). | |
| add_filter( 'searchwp\tokens\minimum_length', function( $min ) { | |
| return 2; | |
| } ); |

