2012-08-24 49 views
0

我有一個自定義模板用於我的頁面,並在該自定義模板中獲得the_content(),然後我使用自定義查詢。我想只能得到我的6篇文章,然後能夠去prev和next看看其他帖子。如何在自定義查詢wordpress上有prev和next鏈接?

下面是我的一些代碼:

<?php if (have_posts()) while (have_posts()) : the_post(); ?> 
     <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 
      <div class="entry-content"> 

       <div id="the_content">       
        <?php the_content(); ?> 
       </div> 
       <?php 

       $args = array('numberposts'=> 6, 
           'post_type'=>'project' 
           ); 
       $posts = get_posts($args); 

        if($posts){ 

         foreach($posts as $post) : setup_postdata($post); 

          //do stuff 

          wp_reset_postdata(); 
        endforeach; 
       endwhile; 
       </div> 
      </article> 

>

回答