WPの投稿で、特定のカテゴリの記事だけ表示させたいとき or 特定のカテゴリだけを除外したいとき。
■特定のカテゴリのみを表示したいとき
<?php query_posts(‘showposts=9&cat=5’); while(have_posts()) : the_post(); ?>
<h1><a href=”<?php the_permalink();?>”><?php the_title();?></a></h1>
<?php the_content();?>
<?php endwhile;?>
■特定のカテゴリのみを除外して表示したいとき
<?php query_posts(‘showposts=9&cat=-5’); while(have_posts()) : the_post(); ?>
<h1><a href=”<?php the_permalink();?>”><?php the_title();?></a></h1>
<?php the_content();?>
<?php endwhile;?>
こちらで紹介されていた方法です。ありがとうございます。