bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/bib-parts/clients.php
2024-03-12 15:59:02 +05:45

36 lines
1.5 KiB
PHP

<!-- CATEGORY AREA START -->
<div class="ltn__category-area section-bg-1-- bg-overlay-theme-black-5--0 pt-100 pb--150"">
<div class=" container">
<div class="row">
<div class="col-lg-12">
<div class="section-title-area ltn__section-title-2 section-title-style-3 text-center">
<div class="section-title-in">
<h1 class="section-title" style="color:#017BAA">Our Clients</h1>
</div>
</div>
</div>
</div>
<div class="row ltn__category-slider-active">
<?php
// Check if the ACF repeater field exists
if( have_rows('clients', 197) ) :
// Loop through the repeater field
while( have_rows('clients', 197) ) : the_row(); ?>
<div class="col-12">
<div class="ltn__category-item ltn__category-item-3 text-center">
<div class="ltn__category-item-img">
<a href="shop.html">
<img src="<?php the_sub_field('logo'); ?>" alt="#">
</a>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
<!-- CATEGORY AREA END -->