1

我在一个非常基本的自定义主题中添加了分页。链接显示(第 1 页、第 2 页等),但是当我单击其中一个链接时,它只是重新加载同一页面。

这是在模板中添加分页的代码:

<?php pagination($additional_loop->max_num_pages); ?>

和功能:

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 "<div class='pagination'>";
         if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>&laquo;</a>";
         if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>&lsaquo;</a>";

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

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

如果有人能提供一些启示,我将不胜感激!

4

1 回答 1

1

paginate_links是将分页添加到存档页面的一种更简单的方法。

假设您启用了永久链接,您需要这样的东西。

<?php

$ulpn=99999999; // Something bigger than you will ever have number of pages.
 $pagination=paginate_links(array('base'=>str_replace($ulpn,'%#%',esc_url(get_pagenum_link($ulpn))), 'format'=>'/page/%#%','current'=>max(1,get_query_var('paged')),'total'=>$wp_query->max_num_pages,'prev_text'=>'Previous','next_text'=>'Next','type'=>'array'));
  if($pagination) { ?>
    <div class="pagination">
      <?php foreach($pagination as $page) { echo $page; } ?>
    </div>
  <?php }
于 2012-09-12T01:37:43.713 回答