searchwp\document\skip
4.0.0以降
SearchWPがドキュメントの処理をスキップするかどうかを制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| ブール値 | $skip |
false |
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 | |
| // Skip document processing for Attachment 14 in SearchWP. | |
| add_filter( 'searchwp\document\skip', function( $skip, $the_post ) { | |
| if ( 14 === $the_post->ID ) { | |
| return true; | |
| } | |
| return $skip; | |
| }, 10, 2 ); |

