mitome-in

mitome in

WordPress のループ

if (have_posts()) :
  while (have_posts()) :
    the_post();
  endwhile;
endif;
$args = array(
  'page_per_posts' => 1
);

$the_query = new WP_Query($args);

if ($the_query->have_posts()) :
  while ($the_query->have_posts()) :
    $the_query->the_post();
  endwhile;
endif;

wp_reset_postdata();

wpdocs.osdn.jp