
カテゴリーページでカテゴリー毎に表示件数を変える
<?php
global $query_string;
$paged = get_query_var('paged');
$catinfo = get_the_category();$catname = $catinfo[0]->category_nicename;
//カテゴリ4は5件まで、それ以外は10件
$cat == '4' ? query_posts($query_string . '&posts_per_page=5')
: query_posts($query_string . '&posts_per_page=5');
if (have_posts()) : while (have_posts()) : the_post();
?>
<a href="<?php the_permalink() ?>"><h3><?php the_title(); ?></h3></a>
<?php the_content(); ?>
<?php endwhile; endif; ?>
で
トラックバック
Trackback:







