如果你的主题正在为主页循环创建一个新的查询,那就是做错了。要获取类别存档,您只需要一个名为according to one of these patterns, 根据您的需要:
category-{slug}.php
 ;–如果类别的slug为news
, WordPress将查找category-news.php
.category-{id}.php
 ;–如果类别的ID为6
, WordPress将查找category-6.php
.category.php
中有一个循环,如下所示:
if( have_posts() ) {
echo \'<div class="list-posts">\';
while( have_posts() ) {
$posts->the_post();
get_template_part( \'content\', get_post_format() );
}
echo \'</div>\';
wp_reset_postdata();
} else {
echo \'<div class="alert alert-error">\'.esc_html__(\'Sorry. There are no posts to display\', \'gon\').\'</div>\';
}
此外,当然,主题需要围绕它编写的任何代码。我真的猜不出那代码是什么样子。