WordPress分页显示第2页上的相同内容

时间:2013-04-09 01:54:42

标签: wordpress loops twitter-bootstrap pagination

我无法链接到我正在处理的网站,因为它现在正在本地运行。我正在尝试在主页上使用分页但发生的情况是它显示了第2页和第3页的链接,但是当我点击链接时它没有显示任何不同的内容。

我正在使用bootstrap框架(没有插件)。我想在不使用插件的情况下尝试分页。

我在主页上运行查询,将最新的3个帖子拉入前3列(1,2,3)。

我在主页上运行了一个额外的查询,将接下来的3个帖子拉到前3个(4,5,6)下面的3列。

当分页显示时,我点击地址栏中的数字和网址更改,但内容保持不变。有没有办法可以使用分页继续在顶部显示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)."'>&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 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)."'>&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></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 ----------------> 

0 个答案:

没有答案