Advertisement
sstasio

Add custom post types to index

Oct 22nd, 2012
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // add custom post types to index
  2. function add_cpts_to_index($query) {
  3. if($query->is_tax && false == $query->query_vars['suppress_filters']) {
  4. $query->set('post_type', array('post', 'employee', 'project', 'recprogram', 'partner', 'testimonial', 'destination', 'capitalprogram', 'class', 'tribe_events'));
  5. }
  6. return $query;
  7. }
  8. add_filter('pre_get_posts', 'add_cpts_to_index');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement