我在主页中创建了一个 wordpress 主题,正如我在另一个模板中看到的那样,用于在主页中获取限制数量的帖子。已经开发了如下代码:
<?php
$featuredPosts->query('showposts=40');
while ($featuredPosts->have_posts() ) : $featuredPosts->the_post(); ?>
<!-- blah blah -->
<?php endwhile;?>
但它显示了 35 个帖子,我该如何解决?它取决于服务器速度吗?