カテゴリー別に検索結果の表示件数を変更させたい時の対処法。ほとんど備忘録です。
上から順にそれぞれ・・ 「カテゴリー」 「月別記事」 「年別記事」 「検索結果」で、右側の数字部分が表示したい件数。
<?php if (is_category()){ $posts = query_posts($query_string . '&showposts=10'); } ?> <?php if (is_month()){ $posts = query_posts($query_string . '&showposts=15'); } ?> <?php if (is_year()){ $posts = query_posts($query_string . '&showposts=20'); } ?> <?php if (is_search()){ $posts = query_posts($query_string . '&showposts=25'); } ?>
twentyten loop.php内、下記の上に挿入