2010-07-13 2 views
1

이 페이지는 최근의 많은 게시물을 표시합니다. 대신 최근 게시물 만 표시하고 싶습니다. 이 루프를 제거하고 가장 최근 루프의 단일 반복으로 대체하는 방법은 무엇입니까?PHP Wordpress 루프, 대신 루프를 제거하고 단일 반복을 표시 하시겠습니까?

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

답변

1

전역의 $ QUERY_STRING 변수 수정 :

<?php 
global $query_string; 
$query_string .= "&posts_per_page=1"; // append the post count limit 
query_posts($query_string); // perform the query 
?> 

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

+1 만 데이터베이스에서 적절한 금액을 쿼리하십시오. –

3

게시물은 이미 올바른 순서로 정렬하고 당신은 당신이 그것을 바꿀 수있는 최초의 하나를하려는 잘 경우 :

<?php if (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 endif; ?> 
관련 문제