function poc_csv_post_to_table($content) { // Only run on single posts in the "schedule" category if (!is_singular() || !has_category('schedule')) { return $content; } // Split into lines $lines = preg_split("/\r\n|\n|\r/", trim($content)); // Detect CSV $has_csv = false; foreach ($lines as $line) { if (strpos($line, ',') !== false) { $has_csv = true; break; } } if (!$has_csv) return $content; $html = ''; $row_index = 0; foreach ($lines as $row) { if (trim($row) === '') continue; $cells = str_getcsv($row); // Remove the first "#" column array_shift($cells); // Detect date rows (e.g., "3/7/2026") if (count($cells) === 3 && preg_match('/^\d{1,2}\/\d{1,2}\/\d{4}$/', trim($cells[0]))) { $html .= ''; continue; } // Header row if ($row_index === 0) { $html .= ''; foreach ($cells as $cell) { $html .= ''; } $html .= ''; $row_index++; continue; } // Normalize group text $group = strtolower(trim($cells[1])); $row_class = ''; if (strpos($group, 'cup racing - orange') !== false) { $row_class = 'poc-orange'; } elseif (strpos($group, 'cup racing - red') !== false) { $row_class = 'poc-red'; } elseif (strpos($group, 'time trial - green') !== false) { $row_class = 'poc-tt-green'; } elseif (strpos($group, 'pds time trial combined') !== false) { $row_class = 'poc-tt-combined'; } elseif (strpos($group, 'track activities') !== false) { $row_class = 'poc-track'; } $html .= ''; foreach ($cells as $cell) { $html .= ''; } $html .= ''; $row_index++; } $html .= '
' . esc_html($cells[0]) . '
' . esc_html($cell) . '
' . esc_html($cell) . '
'; return $html; } add_filter('the_content', 'poc_csv_post_to_table'); VELOCITY 2412 DECEMBER 2024 final - Porsche Owners Club