<?php $args = array( 'post_type' => 'post', 'posts_per_page' => 12, ); $the_query = new WP_Query($args); ?> <?php if ($the_query->have_posts()): ?> <?php while ($the_query->have_posts()) : $the_query->the_post(); ?> <!-- ここに投稿がある場合の記述 --> <?php endwhile; ?> <?php else: ?> <!-- ここに投稿がない場合の記述 --> <?php endif; wp_reset_postdata(); ?> 実用性も兼ねたコード「実用性も兼ねたコードがほしい!」という方は下記コードをどうぞ。 下記の取得と表示を行っています。 パーマリンクサ