2018年内の投稿、2017年の投稿など年を指定して一覧を取得
<?php $args = array( 'posts_per_page' => 5, // 表示する数 'offset' => 0, 'orderby' => 'post_date', 'order' => 'DESC', 'post_type' => 'カスタム投稿のポスト名', 'post_status' => 'publish', 'suppress_filters' => true, 'year' => '2018' // 指定する年 ); $post_datas = get_posts( $args ); ?>
yearだけで絞り込めるとは・・・