<?php $args = array( 'date_query' => array( array( 'after' => 'June 1st, 2021', 'before' => array( 'year' => 2021, 'month' => 12, 'day' => 31, ), 'inclusive' => true, ), ), 'posts_per_page' => -1, 'cat' => 359, 'order' => 'ASC', 'orderby' => 'date', ); $Specific_date = new WP_Query($args); if($Specific_date->have_posts()) : while($Specific_date->have_posts()) : $Specific_date->the_post(); ?> <h1><?php the_title() ?></h1> <div class='post-content'><?php the_content() ?></div> <?php endwhile; ?> </ul> <?php else : ?> <p>Sorry, but you are looking for something that isn't here.</p> <?php endif; ?>