gpt4 book ai didi

wordpress - paginate_links 不显示第二页

转载 作者:行者123 更新时间:2023-12-02 03:47:45 24 4
gpt4 key购买 nike

我想创建一个博客页面,每页仅显示 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() 可以工作了。但即使在第二页之后,导航仍显示“«上一页下一页»”。

最佳答案

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

$args = array( 'numberposts' => '','post_status'=>"publish",'post_type'=>"post",
'orderby'=>"post_date", 'cat'=>1,'paged' => get_query_var('paged'));

关于wordpress - paginate_links 不显示第二页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15803110/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com