Advertisement
isaacadams

CPT: Category and Tags

Sep 15th, 2021
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_filter('pre_get_posts', 'query_post_type');
  2. function query_post_type($query) {
  3. if( is_category() ) {
  4. $post_type = get_query_var('post_type');
  5. if($post_type)
  6. $post_type = $post_type;
  7. else
  8. $post_type = array('nav_menu_item', 'post', 'Replace-Me-With-Your-CPT'); // don't forget nav_menu_item to allow menus to work!
  9. $query->set('post_type',$post_type);
  10. return $query;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement