3

我想创建一个博客页面,每页仅显示 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()有效。但是即使在第二页之后,导航也会显示“«上一页下一页»”。

4

1 回答 1

1

您的查询$args不包含分页参数。

$args = array( 'numberposts' => '','post_status'=>"publish",'post_type'=>"post",
  'orderby'=>"post_date", 'cat'=>1,'paged' => get_query_var('paged')); 
于 2013-04-04T05:41:59.513 回答