How to filter posts by specific date and its tag
Ashur Please try following code with date_query. this is working fine at my end. Let me know if you want any additional detail. <?php $postdate = get_the_date(‘Y-m-d’); $args = array( ‘posts_per_page’ => -1, ‘post_type’ => ‘post’, ‘date_query’ => array( ‘after’ => $postdate, ) ); $update = new WP_Query($args); while ($update->have_posts()) { $update->the_post(); $post_id = get_the_ID(); … Read more