归档-前两个帖子的标题相同

时间:2013-03-21 作者:Rares P.

我创建了一个名为归档的归档页面。php

这里我包括页眉/页脚和以下代码:

<?php if (have_posts()) : while (have_posts()) : ?>
              <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?><a/></h1>
              <?php the_post(); the_content();  ?>
              <br />
<?php endwhile; endif; ?>
问题是,当一个月内有更多的帖子时,前两个帖子的标题和永久链接都与第一个帖子相同。我怎样才能解决这个问题?

期待的感谢!

EDIT

托肖的好建议。

我修复了它,下面是解决方案:

<?php while(have_posts()) : the_post(); ?>

<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?><a/></h1>
<?php the_content(); ?><br />

<?php endwhile; ?>

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

你必须打电话the_post(); 使用前the_permalink()the_title(). 这两个功能都与全局$post 将由设置的对象the_post();.

结束

相关推荐

Displaying Archives List

我正在使用显示列表或档案<?php get_archives(\'monthly\', \'\', \'html\', \'\', \'\', FALSE); ?> 并显示我的列表2012年12月-2012年11月等但是,我想将其格式化以显示:12.1211.1210.12等有什么想法吗?