WordPress的分页不工作的主页上(自定义templete)(WordPress paginat

2019-10-19 04:44发布

我用Google搜索这个问题,我担心的不仅是我还有谁面临这个问题很多编码器。 我申请有固定,但同样的结果。 请您检阅我的分页的代码? 我有一个静态的头版,其中分页重定向我的主页( / )。 如果我以后URL添加/page/2手动这其中也重定向我的主页。 我知道这是幼稚的问题,但我不能找出问题。

这是函数。

 function pagination($pages = '', $range = 2)
 {  
     $showitems = ($range * 2)+1;  

     global $paged;
     if(empty($paged)) $paged = 1;

     if($pages == '')
     {
         global $wp_query;
         $pages = $wp_query->max_num_pages;
         if(!$pages)
         {
             $pages = 1;
         }
     }   

     if(1 != $pages)
     {
         echo "<ul class='pagenavi'>";
         if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<li><a href='".get_pagenum_link(1)."'>&laquo;</a></li>";
         if($paged > 1 && $showitems < $pages) echo "<li><a href='".get_pagenum_link($paged - 1)."'>&lsaquo;</a></li>";

         for ($i=1; $i <= $pages; $i++)
         {
             if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
             {
                 echo ($paged == $i)? "<li><a href='".get_pagenum_link($i)."' class='current' >".$i."</a></li>":"<li><a href='".get_pagenum_link($i)."' class='inactive' >".$i."</a></li>";
             }
         }

         if ($paged < $pages && $showitems < $pages) echo "<li><a href='".get_pagenum_link($paged + 1)."'>&rsaquo;</a></li>";  
         if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) echo "<li><a href='".get_pagenum_link($pages)."'>&raquo;</a></li>";
         echo "</ul>\n";
     }
}

代码用于生成分页

<?php query_posts( array( 'post_type' => 'post', 'paged' => $paged, 'cat'=> $bcatid, 'posts_per_page' => 9 ) );
?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
post content
<?php endwhile; endif; ?>
<?php pagination(); ?>

在此先感谢您的宝贵时间。

Answer 1:

正确的方式来获得一个静态正面页面(模板)当前的页码数,你必须使用“页”查询变量:

$paged = (get_query_var('page')) ? get_query_var('page') : 1;

更多资讯: http://codex.wordpress.org/Function_Reference/get_query_var



文章来源: WordPress pagination not working on home page ( Custom templete )