Disable PDF metadata indexing for a specific PDF in SearchWP
<?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 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment