|   First Harvest   |   12/15/2025

Posts Homepage Carousel

ID) ? $post->ID : uniqid());
$today = date('Ymd'); // ACF date format
$q = new WP_Query([
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 10,
'ignore_sticky_posts' => true,
'category__in' => array(12,13,14),
'meta_key' => 'event_date',
'orderby' => 'meta_value_num',
'order' => 'DESC'
]);

if ($q->have_posts()) {
$posts = $q->posts; // don't touch global $post
$per_slide = 2; // 2 cards per slide (matches your markup)
$total_posts = count($posts);
$total_slides = (int) ceil($total_posts / $per_slide);
?>