SearchWP

searchwp\source\post\global_excerpt

Since: 4.0.0

Table of Contents

Control whether SearchWP finds a ‘global’ excerpt from all post content, not just post_content.

Parameters

Type Parameter Default Since
Boolean $enabled State of Highlighting enabled checkbox on Advanced tab of SearchWP settings screen 4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Enable global excerpt retrieval

<?php
// Enable global excerpt retrieval in SearchWP.
add_filter( 'searchwp\source\post\global_excerpt', '__return_true' );

How to use this code