Advertisement
vailobox

exclude custom post type from search

Mar 19th, 2015
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. // functions.php
  3.  
  4. add_action( 'init', 'update_testimonials', 99 );
  5.  
  6. function update_testimonials() {
  7. global $wp_post_types;
  8.  
  9. if ( post_type_exists( 'testimonials' ) ) {
  10.  
  11. // exclude from search results
  12. $wp_post_types['testimonials']->exclude_from_search = true;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement