WordPressでTOPページとかに、カテゴリ毎にタイトルを表示したい場合がある。
TOPICSとインフォメーションなど(同じか・・・)

その際は、以下のソースをテーマフォルダのindex.phpに書けばOK!!

———————————- ここから ——————————————
[php]
< ul>
< ?php $posts = get_posts('category=3&numberposts=4'); ?>
< ?php foreach($posts as $post):?>
< li >< a href="“>< ?php the_title(); ?>
< ?php endforeach; ?>
< / ul>
[/php]
———————————- ここまで ——————————————

get_posts の引数
category=3   →   カテゴリID
numberposts=4 →   表示件数