- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个博客页面,每页仅显示 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/
我想创建一个博客页面,每页仅显示 5 个帖子,如果有 7 个帖子,最后两个帖子将显示在第二页上。 这是我目前得到的: '','post_status'=>"publish",'post_type'
我想向页面及其子页面添加数字分页。这是我想要创建的分页(从 Bootstrap ): « 1 2
我在 WordPress 中有一个自定义循环,并为其添加了分页。我将永久链接设置为漂亮(例如/custom/)。 我设置了自定义循环,因此尽管不是主循环,它仍然可以工作。目前,通过附加 ?paged1
我正在使用 WordPress 的 paginate_links() 函数,该函数正在运行,但我想稍后再输出 html。这是当前显示的内容: « Previous 1 2 3 4 5 Next » P
有人知道如何回显 paginate_links() url 吗? 例如:上一页 1 2 3 4 下一页 所以我想回声: prev >> URL 1 >> URL 2 >> URL 像这样。任何人都可以
我是一名优秀的程序员,十分优秀!