Exclude a custom post type from search

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
<?php
add_action('init', 'codex_custom_init');
function codex_custom_init()
{

  $args = array(
    'exclude_from_search' => false, // the important line here!
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true,
    'show_in_menu' => true,
    'query_var' => true,
    'rewrite' => true,
    'capability_type' => 'post',
    'has_archive' => true,
    'hierarchical' => false,
    'menu_position' => null,
    'supports' => array('title','editor','author','thumbnail','excerpt','comments')
  );
  register_post_type('book',$args);
}
?>

Instructions:

Here is an example of how to exclude a custom post type from search results. Handy if using them for things like a slider on home page that aren’t meant to be a stand alone posts.


Related links:
http://codex.wordpress.org/Function_Reference/register_post_type
Share this snippet

If you like this snippet, share it with friends!