📅  最后修改于: 2022-03-11 14:54:13.580000             🧑  作者: Mango
function custom_post_type_cat_filter($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ($query->is_category()) {
$query->set( 'post_type', array( 'post', 'YOUR CPT' ) );
}
}
}
add_action('pre_get_posts','custom_post_type_cat_filter');