A.Writer

bf

Auto-fetch next NHL game and update a post function fetch_nhl_next_game() { $api_url = ‘https://statsapi.web.nhl.com/api/v1/schedule?expand=schedule.broadcasts&date=’ . date(‘Y-m-d’); $response = wp_remote_get($api_url); if (is_wp_error($response)) return; $body = wp_remote_retrieve_body($response); $data = json_decode($body, true); if (empty($data[‘dates’][0][‘games’])) return; $game = $data[‘dates’][0][‘games’][0]; // First upcoming game $home_team = $game[‘teams’][‘home’][‘team’][‘name’]; $away_team = $game[‘teams’][‘away’][‘team’][‘name’]; $game_date = new DateTime($game[‘gameDate’]); $broadcasts = $game[‘broadcasts’] ?? []; $title…

Read More
Back To Top