还有一种方法比归档更简单。php
替换该代码
<?php
get_template_part(\'loop\', $the_template_part);}
?>
使用此代码
<?php
if (is_category(\'CAT_ID\'))
{get_template_part(\'loop2\', $the_template_part);
}
else {get_template_part(\'loop\', $the_template_part);}
?>
然后根据需要创建自定义循环,并将其命名为loop2或everthat,这将为您提供您想要的内容,只显示您想要创建的自定义循环中的类别帖子