トップページに表示するカテゴリを限定する

トップページに表示するカテゴリを限定するには、
index.phpで記事一覧を表示するループの前でquery_postsを使用する

query_posts($query_string . "&cat=(カテゴリID)");
while (have_posts()) : the_post();
    // 処理
endwhile;
wp_reset_query();

category_name=(カテゴリスラッグ)というのも使える。

コメントをどうぞ

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>