我的索引中有这个循环。php:
<?php if (have_posts()) :
while (have_posts()) :
get_template_part( \'post\' );
endwhile;
endif; ?>
调用此模板
<?php
?>
<h2 id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h2>
<?php the_post();
the_content(); ?>
<p class="date"><?php the_time(\'l, j F Y\'); ?> </p>
<?php trackback_rdf();
?>
循环的行为奇怪,按以下顺序打印标题和帖子:
标题帖子1(这没关系,但是…)
标题栏#1
内容帖子#2
标题栏#2
标题帖子#3(等等…)我做错了什么?