普通のループ
<ul>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li>
<?php the_time('Y年m月d日'); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; else : ?>
<li>投稿が見つかりません。</li>
<?php endif; ?>
</ul>