我在我的第一个WP网站上工作,遇到了一些困难。在我的主题索引中。php页面,我看到以下代码:
<?php
query_posts(array(
\'category__not_in\' => array($headline),
\'post__not_in\' => $postnotin,
\'paged\' => $paged,
\'numberposts\' => 5
));
if ( have_posts() ): $postCount = 0; ?>
<?php while ( have_posts() ) : the_post(); $postCount++;?>
[more code....]
所以,你看,我试图将主页上的帖子数量限制为5篇,我认为这是默认的。无论如何,它显示了超过5个,我似乎无法让它工作。我尝试过“posts\\u per\\u page”,但运气不好。如果我的主题覆盖了它,有什么想法吗?
FWIW,我正在使用colorlabs的启动器主题
谢谢
最合适的回答,由SO网友:julie p 整理而成
下面是我最后做的:
<?php
query_posts(array(
\'category__not_in\' => array($headline),
\'post__not_in\' => $postnotin,
\'paged\' => $paged,
\'posts_per_page\' => 5
));
if ( have_posts() ): $postCount = 0; ?>
<?php while ( have_posts() ) : the_post(); $postCount++;
if ($postCount < 6) {
?>
[all my code]
<?php } #end if ?>
<?php endwhile;?>