Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 28, 2022 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save searchwpgists/1eb7481607002a9a196ff916058d12c4 to your computer and use it in GitHub Desktop.
Save searchwpgists/1eb7481607002a9a196ff916058d12c4 to your computer and use it in GitHub Desktop.
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