WordPressでエントリー表示数をページごとに変える

ブログのトップページには本文付きのエントリーを5件表示、アーカイブページにはニュースサイトのように記事タイトルのみを50件まで表示したいという場合の対処法。あるあるある。

<?php if(have_posts()):while(have_posts()):the_post();?>

の記述箇所を

<?php query_posts($query_string .'&posts_per_page=50'); ?>
<?php if(have_posts()):while(have_posts()):the_post();?>

とします。

$query_stringを付けないと条件の引継ぎができないので注意が必要。

特定のカテゴリを表示するには

<?php query_posts($query_string .'&cat=3&posts_per_page=50'); ?>
<?php if(have_posts()):while(have_posts()):the_post();?>

のように記述します。

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*