将以下函数与pre_get_posts
筛选器将向常规存档页添加一个或多个CPT:
function wpse94041_cpts_in_archives( $query ) {
if( is_category() || is_tag() ) { // more conditional tags possible, if applicable
$query->set( \'post_type\', array(
\'post\',
\'tutorial\' // add as many CPTs to this array as you like
));
}
return $query;
}
add_filter( \'pre_get_posts\', \'wpse94041_cpts_in_archives\' );
主题的功能。php文件将非常适合上述内容。