File "values.php"

Full Path: /home/concvitk/public_html/wp-content/themes/conceptualizate/template-parts/values.php
File size: 960 bytes
MIME-type: text/plain
Charset: utf-8

<div class="content-services">
    <?php
        $values = array(
            get_field('valor_1'),
            get_field('valor_2'),
            get_field('valor_3'),
            get_field('valor_4'),
            get_field('valor_5'),
            get_field('valor_6'),
            get_field('valor_7'),
            get_field('valor_8'),
            get_field('valor_9'),
            get_field('valor_10'),
            get_field('valor_11'),
            get_field('valor_12'),
        );
        $i = 1;

        foreach ( $values as $key => $value ) :
            $icon = $value['value_icon_'.$i];
            $text = $value['value_title_'.$i];
            $i++;
        ?>

    <div class="service">
        <div class="service-icon">
            <i class="<?php echo esc_attr($icon); ?>"></i>
        </div>
        <h4 class="text-balanced"><?php echo esc_html($text); ?></h4>
    </div>

        <?php endforeach; ?>
</div>