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 = '
| ' . esc_html($cells[0]) . ' | ||
| ' . esc_html($cell) . ' | '; } $html .= '||
| ' . esc_html($cell) . ' | '; } $html .= '||