如何在自定义查询wordpress上有上一页和下一页链接?

时间:2012-08-24 10:18:48

标签: php wordpress

我有一个我用于我的页面的自定义模板,在我自定义模板中the_content()然后我使用自定义查询。我希望能够只获得我的6个帖子,然后能够转到上一个,然后看到其他帖子。

以下是我的一些代码:

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

&GT;

1 个答案:

答案 0 :(得分:0)

试试这个

<?php posts_nav_link();

参考:http://codex.wordpress.org/Next_and_Previous_Links