Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 16:21
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 jchristopher/393d4e131a9e30699498b98e57cc194d to your computer and use it in GitHub Desktop.
Save jchristopher/393d4e131a9e30699498b98e57cc194d 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