searchwp\document\content
4.0.0以降
抽出されたドキュメントコンテンツをカスタマイズします。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 文字列 | $content |
抽出されたコンテンツ | 4.0.0 |
| \WP_Post | $the_post |
インデックス作成中の添付ファイル | 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 | |
| // Customize document content before it is indexed by SearchWP. | |
| add_filter( 'searchwp\document\content', function( $content, $the_post ) { | |
| if ( 18 === $the_post->ID ) { | |
| // Add 'coffee' to the document content so it can be searched. | |
| $content .= ' coffee'; | |
| } | |
| return $content; | |
| }, 10, 2 ); |

