Categories
January 28, 2026
Tab Pane Repeater
';
return;
}
$tabs = get_field('tabs', $target_id);
if (!is_array($tabs) || empty($tabs)) {
echo '';
return;
} else {
$tabcount = count($tabs);
}
$uid = 'lsgTabs-' . substr(md5((string) $target_id . '-' . wp_rand()), 0, 6);
?>
$tab) {
$title = isset($tab['tab_title']) ? $tab['tab_title'] : '';
if (!$title) { continue; }
$is_active = ($i === 0);
$tab_btn_id = $uid . '-tab-' . $i;
$tab_pane_id = $uid . '-pane-' . $i;
$cards = isset($tab['cards']) && is_array($tab['cards']) ? $tab['cards'] : [];
?>
role="tabpanel"
aria-labelledby=""
tabindex="0">
No cards added for this tab yet.