index.phpのスタートループの箇所へ、下記の太字部分を追加した。
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<p style=”margin:5px 0 15px 24px;color:peru;”>投稿日:<?php the_time(‘Y年n月j日’); ?></p>
<?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>