searchwp\stopwords\suggestions\limit
4.0.0以降
SearchWPが表示するストップワードの提案数を制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 整数 | $limit |
20 | 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 | |
| // Modify the number of Stopwords suggestions that are shown. | |
| add_filter( 'searchwp\stopwords\suggestions\limit', function( $limit ) { | |
| return 25; | |
| } ); |

