SearchWP

searchwp\document\skip

Since: 4.0.0

Table of Contents

Control whether SearchWP should skip processing a document.

Parameters

Type Parameter Default Since
Boolean $skip false 4.0.0
\WP_Post $the_post Attachment being indexed 4.0.0

Examples

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

Skip document processing for a specific Attachment

<?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 );

How to use this code