searchwp\tokens\minimum_length
4.0.0以降
SearchWPがトークン(検索語)の最小長として何を使用するかを制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 整数 | $length |
3 (1 if checkbox to disable minimum character length is ticked) |
4.0.0 |
例
All hooks should be added to your custom SearchWP Customizations Plugin.
トークン(検索語)の最小文字数を減らす
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; | |
| } ); |

