PHP Wordpress döngü, nasıl döngü kaldırmak ve yerine tek bir tekrarlanmasını gösteriyor?

0 Cevap php

Bu sayfa yerine ben sadece en son göstermek istiyorum, birçok yeni mesajları gösterir. Nasıl bu döngü kaldırmak ve en son tek bir yineleme ile değiştirmek istiyorsunuz?

    <?php while (have_posts()) : the_post(); ?>

        <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
        <span class="postmetadata"><?php the_category(' / ') ?> &mdash; <?php edit_post_link('Edit', '', ' &mdash; '); ?>  <?php comments_popup_link('No comments', '1 comment', '% comments'); ?></span><br/>
            <small><span class="date"><?php the_time('d') ?></span><br /><?php the_time('M y') ?> <!-- by <?php the_author() ?> --></small>
            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>



            <div class="entry">
                <?php the_content('<em>Continue reading &rarr;</em>'); ?>
            </div>
            <div class="clearfix"></div>

        </div>

    <?php endwhile; ?>

0 Cevap