searchwp\entry\native
4.0.0以降
\SearchWP\Entryのネイティブオブジェクトをカスタマイズします。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| オブジェクト | $native |
エントリーのネイティブオブジェクト | 4.0.0 |
| \SearchWP\Query | $query |
実行中のクエリ | 4.0.0 |
例
すべてのフックはカスタムのSearchWP カスタマイズプラグインに追加する必要があります。
投稿が検索結果である場合のタイトルをカスタマイズします
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 | |
| // Customize the Title of a Post when it is a search result in SearchWP. | |
| add_filter( 'searchwp\entry\native', function( $native, $query ) { | |
| if ( $native instanceof \WP_Post ) { | |
| $native->post_title .= ' search result!'; | |
| } | |
| return $native; | |
| }, 20, 2 ); |

