年別アーカイブ一覧表示
2009年 6月 3日 admin
<?php if (have_posts()) : ?> <dl class="archives"> <?php while (have_posts()) : the_post(); ?> <?php the_date( $date_format, '<dt>', '</dt>' . "\n" ); ?> <dd><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></dd> <?php endwhile; ?> </dl> <?php else: ?> <p>指定された年度の投稿はありません。</p> <?php endif; ?>