【发布时间】:2010-10-28 16:19:40
【问题描述】:
我有一个只显示“新闻”类别的帖子的新闻部分。代码如下所示。
问题是,只有第一个新闻帖子在它上面有一个日期。最近的“新闻帖子”之后的所有帖子都没有日期。有人知道为什么会这样吗?
<div id="news">
<?php $my_query = new WP_Query('category_name=news&posts_per_page=6'); ?>
<marquee ONMOUSEOVER="this.stop();" ONMOUSEOUT="this.start();" direction="up" scrollamount="2" id="newsMarquee">
<?php if (have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="post">
<p class="date"><?php the_date(); ?></p>
<?php the_content('Read the rest of this entry »'); ?>
<div class="clear"></div>
</div>
<?php endwhile; endif;?>
</marquee>
</div><!-- /#news -->
【问题讨论】: