我正在尝试编辑archive.php
这样,当我访问分类页面时,它只显示文章摘要,并使用特色图像作为缩略图。
当我添加the_excerpt()
对于循环,它会显示第一篇文章的摘录,但只是无限期地重复它?
以下是我试图编辑/修改的循环:
// Start the Loop
while (have_posts()) {
the_excerpt();
get_template_part(\'content\', get_post_format());
}
// Display navigation to next/previous pages when applicable
if (theme_get_option(\'theme_bottom_posts_navigation\')) {
theme_page_navigation();
}
最合适的回答,由SO网友:Oleg Butuzov 整理而成
the_post - 在循环中迭代post索引。检索下一篇文章,设置文章,将“循环中”属性设置为true。
while (have_posts()) { the_post();
触发\\u post后,\\u摘录应返回不同的值。