CENGIZHAN TONYA
...
function spaf_render_week_league_program() { ob_start(); // 🔹 Aktif sezonu bul $current_season = get_terms([ 'taxonomy' => 'sp_season', 'hide_empty' => false, 'number' => 1, 'orderby' => 'term_id', 'order' => 'DESC', 'fields' => 'ids', ]); if ( empty($current_season) ) { echo '
⚠️ Henüz aktif bir sezon bulunmamış.
'; return ob_get_clean(); } // 🔹 Tüm ligleri al $all_leagues = get_terms([ 'taxonomy' => 'sp_league', 'hide_empty' => false, 'fields' => 'ids', ]); // 🔹 Zaman dilimi $tz = new DateTimeZone(get_option('timezone_string') ?: 'Europe/Istanbul'); $now = new DateTime('now', $tz); $today_timestamp = strtotime($now->format('Y-m-d')); // 🔹 Hafta değeri (sp_day) $selected_week = isset($_GET['sp_day']) ? intval($_GET['sp_day']) : ''; // 🔹 WP_Query — sp_day meta key'e göre filtrele $week_events_args = [ 'post_type' => 'sp_event', 'post_status' => ['publish','future'], 'posts_per_page' => -1, 'meta_query' => [], 'tax_query' => [ [ 'taxonomy' => 'sp_season', 'field' => 'term_id', 'terms' => $current_season, ], [ 'taxonomy' => 'sp_league', 'field' => 'term_id', 'terms' => $all_leagues, ], ], ]; if ( $selected_week !== '' ) { $week_events_args['meta_query'][] = [ 'key' => 'sp_day', 'value' => $selected_week, 'compare' => '=', ]; } $week_events = new WP_Query($week_events_args); if ( ! $week_events->have_posts() ) { echo '⚠️ Belirtilen haftada maç bulunamadı.
'; return ob_get_clean(); } echo '