您可以在类别存档模板文件中使用以下代码。
if (is_category()) {
global $query_string;
$post_type = get_query_var(\'post_type\');
if ( !$post_type ) { // if no post type is already defined
parse_str( $query_string, $args );
$args[\'post_type\'] = array( \'post\', \'you-custom-post-type-here\' );
query_posts( $args );
}
}
您还可以在主循环之前运行的任何操作中使用上述代码。