function poc_csv_post_to_table($content) { // Only run on single posts in the "schedule" category if (!is_singular() || !has_category('schedule')) { return $content; } // Trim and split into lines $lines = preg_split("/\r\n|\n|\r/", trim($content)); // If no commas at all, skip $has_csv = false; foreach ($lines as $line) { if (strpos($line, ',') !== false) { $has_csv = true; break; } } if (!$has_csv) return $content; // Build HTML table $html = ''; foreach ($lines as $row) { if (trim($row) === '') continue; // skip empty lines $html .= ''; foreach (str_getcsv($row) as $cell) { $html .= ''; } $html .= ''; } $html .= '
' . esc_html($cell) . '
'; return $html; } add_filter('the_content', 'poc_csv_post_to_table'); Multi Media - Porsche Owners Club

Multi Media