"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
foreach ( $tab['sections'] as $section_id => $section ) {
$full_section_id = 'elementor_' . $section_id . '_section';
if ( ! empty( $section['label'] ) ) {
echo '
' . esc_html( $section['label'] ) . '
';
}
if ( ! empty( $section['callback'] ) ) {
$section['callback']();
}
echo '
';
}
echo '
';
}
submit_button();
?>