searchwp\source\post\global_excerpt
4.0.0以降
SearchWPがpost_contentだけでなく、すべての投稿コンテンツから「グローバル」抜粋を見つけるかどうかを制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| ブール値 | $enabled |
SearchWP設定画面の「詳細設定」タブにあるハイライトを有効にするチェックボックスの状態 | 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 | |
| // Enable global excerpt retrieval in SearchWP. | |
| add_filter( 'searchwp\source\post\global_excerpt', '__return_true' ); |

