searchwp\source\post\global_excerpt\{$post_type}
4.0.0以降
投稿タイプごとに個別の投稿のpost_contentだけでなく、すべての投稿コンテンツから「グローバル」抜粋を検索するかどうかを制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| ブール値 | $enabled |
SearchWP設定画面の[高度]タブのハイライトを有効にするチェックボックスの状態。最初にsearchwp\source\post\global_excerptも実行されます。 |
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 | |
| // Disable global excerpt retrieval for Pages in SearchWP. | |
| add_filter( 'searchwp\source\post\global_excerpt\page', '__return_false' ); |

