Pagination and Related Posts

Is it possible to use pagination with the following related posts code, which is embedded in single.php of my theme.<

Is it possible to use pagination with the following related posts code, which is embedded in single.php of my theme.

    <?php
     // for use in the loop, list 5 post titles related to first tag on current post
          $tags = wp_get_post_tags($post->ID);
          if ($tags) {
              $first_tag = $tags[0]->term_id;
              $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
              $args = array(
                 'tag__in' => array($first_tag),
                 'post__not_in' => array($post->ID),
                 'posts_per_page'=> 5,
                 'caller_get_posts'=> 1,
                 'paged'=> $paged
              );
              }
              $the_query = new WP_Query( $args );
                  if( $the_query->have_posts() );
                  while ($the_query->have_posts()) : $the_query->the_post(); ?>

                        <?php get_template_part( 'content' ); ?>

            <?php endwhile; ?>

Is it possible to use pagination with the following related posts code, which is embedded in single.php of my theme.

    <?php
     // for use in the loop, list 5 post titles related to first tag on current post
          $tags = wp_get_post_tags($post->ID);
          if ($tags) {
              $first_tag = $tags[0]->term_id;
              $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
              $args = array(
                 'tag__in' => array($first_tag),
                 'post__not_in' => array($post->ID),
                 'posts_per_page'=> 5,
                 'caller_get_posts'=> 1,
                 'paged'=> $paged
              );
              }
              $the_query = new WP_Query( $args );
                  if( $the_query->have_posts() );
                  while ($the_query->have_posts()) : $the_query->the_post(); ?>

                        <?php get_template_part( 'content' ); ?>

            <?php endwhile; ?>
Share Improve this question edited Nov 14, 2016 at 14:54 Zeljko Radic asked Jan 28, 2014 at 0:06 Zeljko RadicZeljko Radic 34 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Yes, it is possible but might be a little complicated to apply the 'paged' variable to the arguments. You'll need pagination functions which do the ajax calls to receive and apply the 'paged' var.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745233535a4617781.html

相关推荐

  • Pagination and Related Posts

    Is it possible to use pagination with the following related posts code, which is embedded in single.php of my theme.<

    7小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信