在我的主页上,我使用几个循环在页面的各个部分显示来自不同类别的帖子。
我在循环之前添加的代码是:
<?php query_posts(\'category_name=featured&showposts=5\'); ?>
循环就在后面
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( $layout, \'blog-\'.get_post_format() );
endwhile;
else :
?>
<article id="post-0" class="post no-results not-found clearfix">
<header class="entry-header">
<h1 class="entry-title"><?php _e( \'Nothing Found\', \'swift\' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( \'Apologies, but there are no posts in the current context. Perhaps searching will help find a related
post.\', \'swift\' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<div class="clear"></div>
<?php endif; ?>
我将其复制粘贴到所需的类别中。问题是,即使我提到shoposts=5,也会出现10个帖子,不管我指出的是多少。
你们有什么线索吗?
谢谢