Tarih Wordpress ardışık yazılarda görünmüyor

0 Cevap php

Ben sadece "haber" bir kategori ile mesajlarını gösteren bir haber bölümü var. Kod aşağıda gösterilmiştir.

Sorun yalnızca ilk haber sonrası yukarıda bir tarih olur, bir. En son "haber yazılan" izleyen tüm mesajlar tarih yok. Herkes neden bu bir fikrin oluyor var?

Teşekkürler!

Amit

<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 -->

0 Cevap