Skip to content

Instantly share code, notes, and snippets.

@neverything
Created August 19, 2019 14:31
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 neverything/abdb3ea4cd4d75e50bbb1b588e4d8779 to your computer and use it in GitHub Desktop.
Save neverything/abdb3ea4cd4d75e50bbb1b588e4d8779 to your computer and use it in GitHub Desktop.
<?php
/**
* Hide CPT from Search
*/
function update_my_custom_type() {
global $wp_post_types;
if ( post_type_exists( 'wpm-testimonail' ) ) {
// exclude from search results
$wp_post_types['wpm-testimonail']->exclude_from_search = true;
}
}
add_action( 'init', 'update_my_custom_type', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment