循环中的“the_excerpt”只是重复第一个帖子吗?

时间:2012-11-17 作者:speedypancake

我正在尝试编辑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();
}

1 个回复
最合适的回答,由SO网友:Oleg Butuzov 整理而成

the_post - 在循环中迭代post索引。检索下一篇文章,设置文章,将“循环中”属性设置为true。

 while (have_posts())  { the_post();
触发\\u post后,\\u摘录应返回不同的值。

结束

相关推荐

Excerpt Word Count

下面来自WPSnipps的代码提供了一个摘录字符计数器,但我想计算words 相反有人知道怎么做吗?// Excerpt character count function excerpt_count_js(){ echo \'<script>jQuery(document).ready(function(){ jQuery(\"#postexcerpt .handlediv\").after(\"<div style=\\\"position:abso