File "talk.php"
Full Path: /home/concvitk/public_html/wp-content/themes/conceptualizate/template-parts/talk.php
File size: 654 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$boxes = array(
get_field('box_1'),
get_field('box_2'),
get_field('box_3'),
);
$i = 1;
foreach( $boxes as $key => $box ) :
$text = $box['box_title_'.$i];
$icon = $box['box_icon_'.$i];
$description = $box['box_description_'.$i];
$i++;
?>
<div class="box-action">
<div class="title">
<h3 class="text-balanced"><?php echo esc_html($text); ?></h3>
<i class="<?php echo esc_attr($icon); ?>"></i>
</div>
<p><?php echo esc_html($description); ?></p>
</div> <!-- box -->
<?php endforeach;
?>