bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/bib-parts/why-us.php

85 lines
3.6 KiB
PHP
Raw Normal View History

2024-03-12 05:32:45 +00:00
<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">
<!-- Left side fields -->
<div class="col-lg-4">
<?php
// Check if the ACF repeater field exists
if (have_rows('whyus', 54)) :
// Counter variable to keep track of the number of fields displayed
2024-03-12 10:14:02 +00:00
$counter = 1;
2024-03-12 05:32:45 +00:00
// Loop through the repeater field
2024-03-12 10:14:02 +00:00
while (have_rows('whyus', 54) && $counter <= 3 ) : the_row();
2024-03-12 05:32:45 +00:00
// Increment the counter
$counter++;
// Display only the first field on the left side
?>
<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="service-details.html"><?php the_sub_field('title'); ?></a></h3>
<p><?php the_sub_field('description'); ?></p>
</div>
</div>
<?php
endwhile;
endif;
?>
</div>
<!-- Center image -->
<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>
<!-- Right side fields -->
<div class="col-lg-4">
<?php
// Reset the counter
$counter = 0;
// Check if the ACF repeater field exists
if (have_rows('whyus', 54)) :
// Loop through the repeater field
while (have_rows('whyus', 54)) : the_row();
// Increment the counter
$counter++;
// Display the next three fields on the right side
if ($counter > 1 && $counter <= 4) :
?>
<div class="ltn__feature-item ltn__feature-item-3 text-left">
<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>
<p><?php the_sub_field('description'); ?></p>
</div>
</div>
<?php
endif;
endwhile;
endif;
?>
</div>
</div>
</div>
</div>