SearchWP Documentation

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

\SearchWP\Statistics

\SearchWP\Statistics は、サイトで行われた訪問者の検索に関する統計データを生成するために使用できます。

基本的な使い方

\SearchWP\Statistics を使用して、次のように渡されたパラメータに基づいて記録されたデータを取得および表示できます。

<?php
// @link https://searchwp.com/documentation/classes/searchwp-statistics/
// Retrieve the most commmon searches for the
// Default engine from the past thirty days.
$statistics = \SearchWP\Statistics::get_popular_searches( [
'days' => 30,
'engine' => 'default',
] );
// Display the results in a <table>.
\SearchWP\Statistics::display( $statistics );
view raw functions.php hosted with ❤ by GitHub

結果をさらに絞り込むために使用できる追加のパラメータがあります。

<?php
// @link https://searchwp.com/documentation/classes/searchwp-statistics/
$statistics = \SearchWP\Statistics::get_popular_searches( [
// 7 days old or newer.
'days' => 7,
// The Engine used for searches.
'engine' => 'default',
// The search queries to ignore i.e. spam, junk.
'exclude' => [ 'spam search query', 'lorem ipsum' ],
// How many search queries to return.
'limit' => 5,
// With at least one result.
'min_hits' => 1,
// With at most 100 results.
'max_hits' => 100,
// Which site(s) to consider.
'site' => [ get_current_blog_id() ],
] );
// Display the stats in a <table>.
\SearchWP\Statistics::display( $statistics );
view raw functions.php hosted with ❤ by GitHub

引数

\SearchWP\Statistics をインスタンス化する際に、受け入れられる引数はありません。

メソッド

get_popular_searches( array $args = [] )
指定された引数に基づいて人気の検索を取得します。
次のパラメータを受け入れます
'days' (integer) 遡る日数。(デフォルト: 1)
'engine' (string) 考慮する\SearchWP\Engineの名前。(デフォルト: 'default')
'exclude' (string[]) 無視する検索語(例:スパム、ジャンク)。(デフォルト: [])
'limit' (integer) 返される人気の検索の数。(デフォルト: 10)
'min_hits' (false|integer) 返される検索結果の最小数。(デフォルト: 1)
'max_hits' (false|integer) 返される検索結果の最大数。(デフォルト: false)
'site' (integer[]) 返される検索のサイトID。(デフォルト: [ get_current_blog_id() ])

フック

\SearchWP\Statistics の動作をさらに変更するために使用できるフックがいくつかあります。

今日からより良いWordPress検索エクスペリエンスを作成しましょう

役に立たない検索結果で訪問者を失うことはもうありません。SearchWPを使用すると、独自のスマートなWordPress検索をすばやく簡単に作成できます。

Get SearchWP Now
複数の検索エンジンアイコン