// ========================================================================= // SHORTCODE: Frontpage On This Day Widget (100% width, single column, white headings) // Usage: [frontpage_on_this_day] // ========================================================================= add_shortcode('frontpage_on_this_day', 'otg_render_frontpage_on_this_day'); function otg_render_frontpage_on_this_day() { global $wpdb; $events_table = 'otg_rangers_events'; $transactions_table = 'otg_transactions'; $players_table = 'otg_players'; $current_md = date('m-d'); // e.g., '08-06' $current_year = date('Y'); // 1. Query general/historical events (excluding current year, capped at 5)[cite: 5] $events_sql = $wpdb->prepare( "SELECT * FROM {$events_table} WHERE DATE_FORMAT(event_date, '%%m-%%d') = %s AND YEAR(event_date) != %d ORDER BY event_date ASC LIMIT 5", $current_md, $current_year ); $events = $wpdb->get_results($events_sql); // 2. Query game events played on this month/day across all years[cite: 5] $games_sql = $wpdb->prepare( "SELECT * FROM {$events_table} WHERE DATE_FORMAT(event_date, '%%m-%%d') = %s AND (LOWER(category) = 'game' OR LOWER(category) = 'playoffs' OR related_game_id IS NOT NULL) ORDER BY event_date DESC", $current_md ); $game_events = $wpdb->get_results($games_sql); // 3. Query specifically for Birthdays matching today's month/day from both otg_rangers_events and otg_players $birthday_events = []; // 3a. Get birthdays from events table $event_birthdays_sql = $wpdb->prepare( "SELECT title, event_date as bday_date FROM {$events_table} WHERE DATE_FORMAT(event_date, '%%m-%%d') = %s AND LOWER(category) = 'birthday' ORDER BY event_date ASC", $current_md ); $event_bdays = $wpdb->get_results($event_birthdays_sql); if (!empty($event_bdays)) { foreach ($event_bdays as $eb) { $birthday_events[] = [ 'name' => $eb->title, 'date' => $eb->bday_date ]; } } // 3b. Get player birthdays from otg_players table where played = 'y' $player_birthdays_sql = $wpdb->prepare( "SELECT Name, Birthday as bday_date FROM {$players_table} WHERE played = 'y' AND DATE_FORMAT(Birthday, '%%m-%%d') = %s ORDER BY Birthday ASC", $current_md ); $player_bdays = $wpdb->get_results($player_birthdays_sql); if (!empty($player_bdays)) { foreach ($player_bdays as $pb) { $birthday_events[] = [ 'name' => $pb->Name, 'date' => $pb->bday_date ]; } } // Sort combined birthdays by birth year ascending usort($birthday_events, function($a, $b) { return strcmp($a['date'], $b['date']); }); // 4. Query up to the top 5 most recent transactions excluding the current date[cite: 5] $transactions_sql = $wpdb->prepare( "SELECT * FROM {$transactions_table} WHERE DATE_FORMAT(Date, '%%m-%%d') = %s AND YEAR(Date) != %d ORDER BY Date DESC LIMIT 5", $current_md, $current_year ); $transactions = $wpdb->get_results($transactions_sql); // Build container matching Active Injuries styling/padding (20px) and width set to 100%[cite: 5] $html = '
'; // Widget Header matching "ACTIVE INDUSTRIES" layout/size: "ON THIS DAY: AUGUST 6"[cite: 5] $html .= '
ON THIS DAY: ' . strtoupper(date('F j')) . '
'; // --- SECTION A: Overall Game Record & Last 5 Games on this Date --- if (!empty($game_events)) { $html .= '
'; $html .= '
Games
'; $html .= '
Record & Last Games on ' . date('F j') . ':
'; $last_five_games = array_slice($game_events, 0, 5); $html .= '
'; foreach ($last_five_games as $g) { $g_year = date('Y', strtotime($g->event_date)); $g_title = esc_html($g->title); $html .= '
'; $html .= '' . $g_year . ': ' . $g_title; $html .= '
'; } $html .= '
'; $html .= '
'; } else { $html .= '
No games played on this day.
'; } // --- SECTION B: Birthdays --- $html .= '
'; $html .= '
Birthdays
'; if (!empty($birthday_events)) { $html .= '
'; foreach ($birthday_events as $bday) { $b_year = !empty($bday['date']) ? date('Y', strtotime($bday['date'])) : ''; $b_title = esc_html($bday['name']); $html .= '
'; $html .= '' . $b_title . '' . ($b_year ? ' (' . $b_year . ')' : ''); $html .= '
'; } $html .= '
'; } else { $html .= '
No birthdays today.
'; } $html .= '
'; // --- SECTION C: Transactions --- if (!empty($transactions)) { $html .= '
'; $html .= '
Transactions
'; $html .= '
'; foreach ($transactions as $tx) { $t_year = date('Y', strtotime($tx->Date)); $t_name = esc_html($tx->Name ?? 'Player'); $t_type = esc_html($tx->Transaction ?? 'Transaction'); $html .= '
'; $html .= '' . $t_year . ' - ' . $t_name . ': ' . $t_type; $html .= '
'; } $html .= '
'; $html .= '
'; } // --- SECTION D: Passings & Historical Events (Capped at 5) --- if (!empty($events)) { $html .= '
'; foreach ($events as $event) { $year = date('Y', strtotime($event->event_date)); $title = esc_html($event->title); $excerpt = esc_html($event->excerpt); // Handle YouTube Embed Responsively $youtube_html = ''; if (!empty($event->you_tube_link)) { $yt_url = trim($event->you_tube_link); $embed_url = ''; if (strpos($yt_url, 'embed/') !== false) { $embed_url = $yt_url; } elseif (strpos($yt_url, 'youtu.be/') !== false) { $parts = explode('youtu.be/', $yt_url); $embed_url = 'https://www.youtube.com/embed/' . strtok($parts[1], '?'); } elseif (strpos($yt_url, 'watch?v=') !== false) { parse_str(parse_url($yt_url, PHP_URL_QUERY), $queryParams); if (!empty($queryParams['v'])) { $embed_url = 'https://www.youtube.com/embed/' . $queryParams['v']; } } if (!empty($embed_url)) { $youtube_html = '
'; } } // Single column card box (with white/neutral accents)[cite: 5] $html .= '
'; $html .= '
' . $year . '
'; $html .= '
' . $title . '
'; if (!empty($excerpt)) { $html .= '
' . $excerpt . '
'; } $html .= $youtube_html; $html .= '
'; } $html .= '
'; } // Link at the bottom to go to the /on-this-day/ page[cite: 5] $on_this_day_url = esc_url(home_url('/on-this-day/')); $html .= '
'; $html .= 'View All Historical Events »'; $html .= '
'; $html .= '
'; return $html; } GAME 2: NYR @ BUF MSG 7PM – Where Smit Hits The Fan – OutsideTheGarden Boards
FEBRUARY
«
Wed
9
Thu
10
Fri
11
Sat
12
Sun
13
Mon
14
Tue
15
»
GAME 2: NYR @ BUF M...
 
Notifications
Clear all

GAME 2: NYR @ BUF MSG 7PM

61 Posts
4 Users
5 Reactions
3,441 Views
CuyllRanger
(@cuyllranger)
Posts: 3183
Hall of Famer
Topic starter
 

Wakey wakey Boys.


This topic was modified 10 months ago 2 times by Fish
 
Posted : October 9, 2025 5:48 pm
x10003q
(@x10003q)
Posts: 6247
Legend
 

first night with the new broadcast booth


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:03 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Posted by: @cuyllranger

Wakey wakey Boys.

Hopefully they wake up and avoid the usual STB vs Buffalo

 


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:05 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Posted by: @x10003q

first night with the new broadcast booth

Hopefully Kenny can carry Dave

 


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:06 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Hopefully the Rangers can score early and often


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:07 pm
x10003q
(@x10003q)
Posts: 6247
Legend
 

Posted by: @pierre_pdare

Posted by: @x10003q

first night with the new broadcast booth

Hopefully Kenny can carry Dave

 

👍 Dave getting his TV shot after his full retirement age!

 


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:08 pm
Doug Glatt reacted
x10003q
(@x10003q)
Posts: 6247
Legend
 

Like this Zib shooting


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:09 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Hope is not a strategy


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:10 pm
x10003q
(@x10003q)
Posts: 6247
Legend
 

3 shots in 12 seconds for the Rangers


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:10 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Lindy Ruff looks like he could be Dave's younger brother


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:13 pm
x10003q
(@x10003q)
Posts: 6247
Legend
 

Panarin hits Laf with a x ice one timer


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:14 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

That was the Rangers best chance so far this season but they hit the tender in the logo again


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:16 pm
x10003q reacted
x10003q
(@x10003q)
Posts: 6247
Legend
 

Fox crushed


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:17 pm
Doug Glatt
(@pierre_pdare)
Posts: 5316
Legend
 

Posted by: @x10003q

Fox crushed

Might have popped his tampon out

 


If they need me to bleed, then I'll bleed for my team

 
Posted : October 9, 2025 6:18 pm
CuyllRanger reacted
x10003q
(@x10003q)
Posts: 6247
Legend
 

PP rangers


1 Cup in 86 years
2048

 
Posted : October 9, 2025 6:20 pm
Page 1 / 5
Share:
TOP