Wordpress上的连续帖子上没有显示日期

时间:2010-10-28 16:19:41

标签: php html wordpress date

我有一个新闻栏目,只显示一个“新闻”类别的帖子。代码如下所示。

问题是,只有第一篇新闻帖才能获得一个日期。最新“新闻帖子”之后的所有帖子都没有日期。任何人都知道为什么会这样?

<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 &raquo;'); ?>
                        <div class="clear"></div>
                    </div>

                <?php endwhile; endif;?>

                </marquee>

        </div><!-- /#news -->

1 个答案:

答案 0 :(得分:4)

修复了问题。

必须更改<?php the_date(); ?>

为:

<?php the_time('F jS, Y') ?>

希望能帮助那里的任何人。