日付の横にカテゴリーを表示する場合の自分メモ。
index.phpテンプレートのh2の下を以下に置き換え。

<div class="article_info"><time><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_time(get_option('date_format')) ?></a></time> <span class="cat">categorised as: <?php the_category(', '); ?></span></div>

WordPressのカテゴリ、アーカイブで全文表示

WordPressのアーカイブ、カテゴリの一覧ページで全文表示したいときはarchive.phpの以下を変更

変更前

<?php the_excerpt('Read the rest of this entry &raquo;'); ?>

変更後

<?php the_content('Read the rest of this entry &raquo;'); ?>

テンプレアップデートした場合なんかはここも変更すること > 未来の自分へ
やっぱり使ってみないと、ああしたいこうしたいって出てこないね。