我在主页上创建了一个wordpress主题,正如我在另一个模板中看到的主页中的帖子限制数量。像下面这样的代码已经开发出来了:
<?php
$featuredPosts->query('showposts=40');
while ($featuredPosts->have_posts() ) : $featuredPosts->the_post(); ?>
<!-- blah blah -->
<?php endwhile;?>
但它显示了35个帖子,我该如何解决?它取决于服务器速度吗?
答案 0 :(得分:2)
试试这个
$featuredPosts->query('posts_per_page=40');
showposts(int) - 每页显示的帖子数。从WP版本2.1开始不推荐使用'posts_per_page'。
答案 1 :(得分:0)
第1点:首先检查您是否有40个或更多帖子
尝试该代码
<?php query_posts("showposts=40"); ?>
或
<?php query_posts( 'posts_per_page=40' ); ?>
并在wp_admin面板中查看设置 - &gt;阅读Sestting-&gt; 博客页面最多显示
答案 2 :(得分:0)
您确定要查询的类别中有超过35个帖子吗?我认为您使用的查询方法应为 query_posts 。更标准的符合循环将是:
<?php query_posts('showposts=40');
while (have_posts()) : the_post();
?>