トップページに表示するカテゴリを限定するには、
index.phpで記事一覧を表示するループの前でquery_postsを使用する
[sourcecode language=’php’]
query_posts($query_string . “&cat=(カテゴリID)”);
while (have_posts()) : the_post();
// 処理
endwhile;
wp_reset_query();
[/sourcecode]
category_name=(カテゴリスラッグ)というのも使える。