searchwp\document\pdf_metadata\skip
Since: 4.0.0
Table of Contents
Whether PDF metadata should be skipped during indexing.
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.
Disable PDF metadata indexing for a specific PDF
<?php | |
// Disable PDF metadata indexing for a specific PDF in SearchWP. | |
add_filter( 'searchwp\document\pdf_metadata\skip', function( $skip, $the_post ) { | |
if ( 199 === $the_post->ID ) { | |
return true; | |
} | |
return $skip; | |
}, 10, 2 ); |