Categories
January 17, 2025
Title and Text with Tables
echo '
| ' . $th['c'] . ' | |
|---|---|
| ' . $td['c'] . ' | ' . $td['c'] . ' |
';
echo '
';
// Mobile Collapsible Table
echo '
if(count($table['body'][0]) > 2) {
$rowIndex = 0;
foreach ($table['body'] as $tr) {
$firstColumn = $tr[0]['c']; // Get the first column as the collapse button text
$collapseId = 'collapseRow' . $rowIndex;
echo '
echo '
echo '
';
echo '';
echo '
';
echo '
echo '
echo '
| ' . $th['c'] . ' | ' . $tr[$colIndex]['c'] . ' |
|---|
';
echo '
';
echo '
';
echo '
';
echo '
';
$rowIndex++;
}
echo '
'.$table['caption'].'
';
echo '
'; // End mobile section
}
else {
if (!empty($table['header'])) {
foreach ($table['header'] as $colIndex => $th) {
echo '
echo '
' . esc_html($th['c']) . '
';
$a = 0;
foreach ($table['body'] as $row) {
$a++;
if($a % 2 == 0)
echo '
else
echo '
if (isset($row[$colIndex])) {
$nextColIndex = $colIndex + 1;
echo '
'; // Current column
echo '
';
}
echo '
';
}
echo '
';
}
}
echo '
';
}
}
?>