SearchWP

searchwp\source\post\global_excerpt\{$post_type}

Since: 4.0.0

Table of Contents

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

Parameters

Type Parameter Default Since
Boolean $enabled State of Highlighting enabled checkbox on Advanced tab of SearchWP settings screen. Also run through searchwp\source\post\global_excerpt first. 4.0.0

Examples

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

Disable global excerpt retrieval for Pages

<?php
// Disable global excerpt retrieval for Pages in SearchWP.
add_filter( 'searchwp\source\post\global_excerpt\page', '__return_false' );

How to use this code