ループでhave_posts()とthe_post()を繰り返すサンプル

下記のようなループは何度も出てくるみたいなのでメモしておく。

<body <?php body_class()  ?>>

  <?php wp_body_open() ?>

  <?php get_template_part('includes/header'); ?>

  <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    
    <?php endwhile; ?>
  <?php endif; ?>