デイトラでプログラミング始めました

固定ページで投稿一覧を表示する

<?php
$args = array( 'post_type' => 'post', // 'post'以外のカスタム投稿タイプも指定可能 'posts_per_page' => -1, // 全ての投稿を取得 'orderby' => 'date', // 投稿日でソート 'order' => 'DESC' // 降順 (最新投稿が先頭に来る)
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="entry-content"> <?php the_excerpt(); ?> </div> <?php } /* 復元 */ wp_reset_postdata();
} else { // 投稿が見つからなかった場合の処理 echo '投稿が見つかりません。';
}
?>