我已经使用代码为我的WordPress博客添加了分页功能。它可以正常工作。我正在使用的代码是从这里提供的:
http://design.sparklette.net/teaches/how-to-add-wordpress-pagination-without-a-plugin/
当我添加它时,菜单显示在底部,它运行正常,但它在菜单中最多6页。它生成了9个页面(因为这是我目前所拥有的确切内容量)并继续生成新页面,但不会在底部的菜单上更新。那里只有六页。这是我在functions.php中的确切代码(应该与我发布的链接相同):
/* PAGINATION */
function pagination($pages = '', $range = 4)
{
$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\"><span>Page ".$paged." of ".$pages."</span>";
if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>";
if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</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)."\">Next ›</a>";
if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>";
echo "</div>\n";
}
}
/*END PAGINATION*/
然后它被称为:
<?php if (function_exists("pagination")) {
pagination($additional_loop->max_num_pages);
} ?>
感谢您的帮助!
答案 0 :(得分:0)
我没有看到任何可以解释你遇到的问题的东西,但这是我自己制作的一个非常基本的分页脚本,我认为可能有所帮助:
global $paged;
$curpage = $paged ? $paged : 1;
$args = array(
'posts_per_page' => 5,
'paged' => $paged,
//'category_name' => 'your_category_name' /*If needed*/
);
$query = new WP_Query($args);
if($query->have_posts()) : while ($query->have_posts()) : $query->the_post();
?>
<div class="postBlock"><?php the_excerpt(); ?></div>
<?php
endwhile;
echo '<div id="wp_pagination">';
echo '<a class="first page button" href="'.get_pagenum_link(1).'">«</a>';
echo '<a class="previous page button" href="'.get_pagenum_link(($curpage-1 > 0 ? $curpage-1 : 1)).'">‹</a>';
for($i=1;$i<=$query->max_num_pages;$i++)
echo '<a class="'.($active = $i == $curpage ? 'active ' : '').'page button" href="'.get_pagenum_link($i).'">'.$i.'</a>';
echo '<a class="next page button" href="'.get_pagenum_link(($curpage+1 <= $query->max_num_pages ? $curpage+1 : $query->max_num_pages)).'">›</a>';
echo '<a class="last page button" href="'.get_pagenum_link($query->max_num_pages).'">»</a>';
echo '</div>';
wp_reset_postdata();
endif;
?>