HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/Gosuryaid/wp/wp-content/themes/my-listing/sections/info-cards.php
<?php
	$data = c27()->merge_options([
			'items' => [],
		], $data);

?>

<section class="i-section services">
	<div class="container-fluid">
		<div class="row section-body">
			<?php foreach ($data['items'] as $item): ?>
				<div class="<?php echo esc_attr( $item['size'] ) ?>">
					<div class="service-item">
						<?php if ($item['icon']): ?>
							<div class="service-item-icon">
								<span class="<?php echo esc_attr( $item['icon'] ) ?>"></span>
							</div>
						<?php endif ?>

						<div class="service-item-info">
							<?php if ($item['title']): ?>
								<h2><?php echo esc_html( $item['title'] ) ?></h2>
							<?php endif ?>

							<?php if ($item['content']): ?>
								<?php echo do_shortcode( $item['content'] ) ?>
							<?php endif ?>
						</div>
					</div>
				</div>
			<?php endforeach ?>
		</div>
	</div>
</section>