integration-1.php
19 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly. |
| 4 | } |
| 5 | ?> |
| 6 | <div class="big-circle ezd -rounded-circle ezd-position-relative ezd-d-flex ezd-align-items-center ezd-justify-content-center ms-lg-5"> |
| 7 | <?php |
| 8 | if ( ! empty( $integration_item ) ) { |
| 9 | foreach ( $integration_item as $item ) { |
| 10 | if ( ! empty( $item['integration_image']['id'] ) ) { ?> |
| 11 | <div class="brand-icon icon_01 ezd-rounded-circle ezd-d-flex ezd-align-items-center ezd-justify-content-center"> |
| 12 | <?php spel_dynamic_image( $item['integration_image'], 'full', [ 'class' => 'lazy-img' ] ) ?> |
| 13 | </div> |
| 14 | <?php |
| 15 | } |
| 16 | } |
| 17 | } |
| 18 | ?> |
| 19 | </div> |