/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * To show custom types in categories */ add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $query->set('post_type',$post_type); return $query; } }