mitome-in

mitome in

2019-05-21から1日間の記事一覧

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(); en…