我想创建一个博客页面,每页只显示5个帖子,如果有7个帖子,则最后两个帖子将显示在第二页上。
这是我到目前为止所得到的:
<div style="float:left; padding-top: 20px;">
<?php
$args = array( 'numberposts' => '','post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date", 'cat'=>1,'paged' => get_query_var('paged'));
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post);
?>
<div style="float:left;" class="three columns">
<label style="color:#DB6903;"><?php the_date(); ?></label>
<?php the_author(); ?><br>
<?php comments_number(); ?>
<div style="clear:both;"></div>
</div>
<div style="float:left; padding-top: 10px; " class="eight columns" >
<a href="<?php the_permalink() ?>" target="_parent" style="color: black;">
<h2 style="font-size: 28px;"><?php the_title(); ?></h2>
</a>
<div class="entry-summary">
<p> <?php the_excerpt(); ?></p>
</div>
<img src="wp-content/themes/quaero/images/grey_divider" width="100%" alt="divider" />
</div>
<div style="clear:both;"></div>
<?php endforeach; ?>
</div><aside style="float:left; padding-left: 20px;" class="one-third columns">
<?php get_sidebar(); ?>
</aside><div style="clear:both;"></div><?php posts_nav_link(); ?>
当我点击第二页时,它不会显示最后两个帖子。它仍显示前5个帖子。我该如何解决这个问题?
更新:
现在posts_nav_link()
有效。但即使在第二页之后,导航也会显示“«上一页下一页»”。
答案 0 :(得分:1)
您的查询$args
不包含分页参数。
$args = array( 'numberposts' => '','post_status'=>"publish",'post_type'=>"post",
'orderby'=>"post_date", 'cat'=>1,'paged' => get_query_var('paged'));