SearchWP Documentation

インストールガイドを表示したり、ナレッジベースを参照したり、SearchWPの多くのフックについて確認したりできます。

searchwp\stopwords\suggestions\limit

4.0.0以降

SearchWPが表示するストップワードの提案数を制御します。

パラメータ

タイプ パラメータ デフォルト 提供開始
整数 $limit 20 4.0.0

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

ストップワードの提案数を変更する

表示されるストップワードの提案数を変更する

<?php
// Modify the number of Stopwords suggestions that are shown.
add_filter( 'searchwp\stopwords\suggestions\limit', function( $limit ) {
return 25;
} );

このコードの使用方法