bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/bib-parts/why-us.php
2024-03-14 13:53:55 +05:45

83 lines
3.3 KiB
PHP

<!-- FEATURE AREA START ( Feature - 3) -->
<div class="ltn__feature-area pt-60 pb-60">
<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 mb-20">
<div class="section-title-in">
<h1 class="section-title" style="color:#017BAA">Why Choose Us</h1>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="row justify-content-center">
<?php
if (have_rows('whyus', 54)) :
$counter = 1;
while (have_rows('whyus', 54) && $counter <= 3 ) :
the_row(); ?>
<div class="col-lg-12 col-md-6 col-12">
<div class="ltn__feature-item ltn__feature-item-3 text-right text-end">
<div class="ltn__feature-icon">
<span><img src="<?php the_sub_field('image') ?>" alt="#"></span>
</div>
<div class="ltn__feature-info">
<h3><a href="<?php the_permalink('');?>">
<?php echo get_sub_field('title')?></a></h3>
<?php echo get_sub_field('description')?>
</div>
</div>
</div>
<?php $counter++;
endwhile;
endif; ?>
</div>
</div>
<div class="col-lg-4">
<div class="feature-banner-img text-center mb-160">
<img src="<?php echo get_template_directory_uri(); ?>/img/others/2.png" alt="#">
</div>
</div>
<div class="col-lg-4">
<div class="row justify-content-center">
<?php
if (have_rows('whyus', 54)) :
// Counter variable to keep track of the number of fields displayed
$counter = 1;
// Loop through the repeater field
while (have_rows('whyus', 54) && $counter <= 3 ) : the_row();
// Increment the counter
?>
<div class="col-lg-12 col-md-6 col-12">
<div class="ltn__feature-item ltn__feature-item-3 text-left text-end">
<div class="ltn__feature-icon">
<span><img src="<?php the_sub_field('image') ?>" alt="#"></span>
</div>
<div class="ltn__feature-info">
<h3><a href="service-details.html"><?php the_sub_field('title')?></a></h3>
<?php the_sub_field('description')?>
</div>
</div>
</div>
<?php
$counter++;
endwhile;
endif; ?>
</div>
</div>
</div>
</div>
</div>
<!-- FEATURE AREA END -->