我创建了一个名为归档的归档页面。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; ?>