特定カテゴリーの記事の最大表示数を変える【WordPress】
■書式query_posts($query_string . "cat=3&showposts=5")■使用例
カテゴリー3の最新記事を5件表示する場合<?php query_posts($query_string . "cat=3&showposts=5"); ?> <?php if(have_posts()) : while (have_posts()) : the_post(); ?> <div class=”post”> <h3 class=”storytitle” id=”post-<?php the_ID(); ?>”> <a href=”<?php the_permalink() ?>” rel=”bookmark”> <?php the_title(); ?> </a> </h3> <?php the_content(__(‘(more…)’)); ?> </div> <?php endwhile; else: ?> <p>該当する記事はありません。</p> <?php endif; ?>