megane9988
8/22/2016 - 6:09 AM

普通のループ

普通のループ


<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>