add_shortcode('trainingsuebersicht', function () { if (!class_exists('TablePress')) { return '

TablePress ist nicht installiert.

'; } $table_id = 5; $table = TablePress::$model_table->load($table_id); if (empty($table['data'])) { return '

Keine Daten gefunden.

'; } $daten = []; $aktueller_tag = ''; foreach ($table['data'] as $index => $row) { // Kopfzeile überspringen if ($index === 0) { continue; } $wochentag = trim($row[0] ?? ''); $uhrzeit = trim($row[1] ?? ''); $mannschaft = trim($row[2] ?? ''); if (!empty($wochentag)) { $aktueller_tag = $wochentag; } if (empty($aktueller_tag) || empty($uhrzeit) || empty($mannschaft)) { continue; } $daten[$aktueller_tag][] = [ 'uhrzeit' => $uhrzeit, 'mannschaft' => $mannschaft ]; } $reihenfolge = [ 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag', 'Sonntag' ]; $output = '
'; foreach ($reihenfolge as $tag) { if (empty($daten[$tag])) { continue; } usort($daten[$tag], function($a, $b) { return strcmp($a['uhrzeit'], $b['uhrzeit']); }); $output .= '

' . esc_html($tag) . '

'; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; foreach ($daten[$tag] as $eintrag) { $output .= ''; $output .= ''; $output .= ''; $output .= ''; } $output .= '
UhrzeitMannschaft
' . esc_html($eintrag['uhrzeit']) . '' . esc_html($eintrag['mannschaft']) . '
'; } $output .= '
'; return $output; }); ghc-wordpressadmin – Seite 12 – GOSLAR SPIELT HOCKEY !