Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abdulawal39/675ba6490af1b19ecb349f0fc23134b8 to your computer and use it in GitHub Desktop.
Save abdulawal39/675ba6490af1b19ecb349f0fc23134b8 to your computer and use it in GitHub Desktop.
Exclude PDF Viewers from WordPress Search Results.
/**
* Please add this code in your active theme's functions.php file
* This will exclude PDF Viewer from WordPress Search Results
*/
add_action( 'init', 'tnc_hide_pvfw_search', 99 );
function tnc_hide_pvfw_search() {
global $wp_post_types;
if ( post_type_exists( 'pdfviewer' ) ) {
$wp_post_types['pdfviewer']->exclude_from_search = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment