我无法链接到我正在处理的网站,因为它现在正在本地运行。我正在尝试在主页上使用分页,但发生的情况是它显示了第 2 页和第 3 页的链接,但是当我单击链接时它没有显示任何不同的内容。
我正在使用引导框架(无插件)。我想在不使用插件的情况下尝试分页。
我在主页上运行了一个查询,它将最新的 3 个帖子拉入前 3 列(1、2、3)。
我在主页上运行了一个附加查询,它将接下来的 3 个帖子拉入前 3 个(4、5、6)下方的 3 列中。
显示分页时,我单击数字,地址栏中的 url 发生变化,但内容保持不变。有没有办法可以使用分页继续在顶部显示 3 列,在底部显示 3 列?
请帮忙,谢谢!
在我的functions.php中,我有:
function bootstrap_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 pagination-centered'><ul>";
if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<li><a href='".get_pagenum_link(1)."'>«</a></li>";
if($paged > 1 && $showitems < $pages) echo "<li><a href='".get_pagenum_link($paged - 1)."'>‹</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 class='active'><span class='current'>".$i."</span></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)."'>›</a></li>";
if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<li><a href='".get_pagenum_link($pages)."'>»</a></li>";
echo "</ul></div>\n";
}
}
查询 1 如下所示:
<div id="post-<?php the_ID(); ?>" class="span4">
<div class="our-work-thumbs">
<?php
// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<h4><?php the_title(); ?> - <span><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">view project</a></span></h4>
</div>
</div>
<?php $count1++; } ?>
<?php endforeach; ?>
</div>
<!------------ FIRST ROW ---------------->
查询 2 如下所示:
<div id="post-<?php the_ID(); ?>" class="span4">
<div class="our-work-thumbs">
<?php
// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<h4><?php the_title(); ?> - <span><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">view project</a></span></h4>
</div>
</div>
<?php $count2++; } ?>
<?php endforeach; ?>
</div>
<?php endif; ?>
<!------------ SECOND ROW ---------------->