function udv_get_same_city_upcoming_posts($post_id) { if (!$post_id || get_post_type($post_id) !== 'tribe_events') { return []; } list($ville_term, $departement_term) = udv_get_event_city_and_department_terms($post_id, 'udv_event_cat'); if (!$ville_term || empty($ville_term->term_id)) { return []; } $now = current_time('mysql'); $args = [ 'post_type' => 'tribe_events', 'post_status' => 'publish', 'posts_per_page' => 5, 'post__not_in' => [$post_id], 'no_found_rows' => true, 'ignore_sticky_posts' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'meta_key' => 'debut_sort', 'orderby' => 'meta_value', 'meta_type' => 'DATETIME', 'order' => 'ASC', 'tax_query' => [ [ 'taxonomy' => 'udv_event_cat', 'field' => 'term_id', 'terms' => [(int) $ville_term->term_id], ], ], 'meta_query' => [ [ 'key' => 'debut_sort', 'value' => $now, 'compare' => '>=', 'type' => 'DATETIME', ], ], ]; $q = new WP_Query($args); if (!$q->have_posts()) { wp_reset_postdata(); return []; } $posts = $q->posts; wp_reset_postdata(); return $posts; }Randonnée L’Âme de Goudelin Goudelin