| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/cosmicindrani.com/wp-content/themes/indrani/template-parts/ |
Upload File : |
<section class="whyChooseUsSec mypy100" style="background-image: url( <?php echo get_field( 'why_choose_bg', $post_id ); ?>);">
<div class="container-fluid">
<div class="commonTitle">
<h2><?php echo get_field( 'why_choose_title', $post_id ); ?></h2>
<img src="<?php echo get_field( 'why_choose_title_divider', $post_id ); ?>" alt="" class="divider">
<p><?php echo get_field( 'why_choose_sub_title', $post_id ); ?></p>
</div>
<?php
$whyChooseList = get_posts(array(
'post_type' => 'why-choose-list',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'ASC',
'posts_per_page' => 300
));
if (!empty($whyChooseList)) : // Only display the slider section if there are posts
?>
<div class="row align-items-center justify-content-center">
<?php
foreach ($whyChooseList as $whyChooseListListVal) {
$featuredImage = get_the_post_thumbnail_url($whyChooseListListVal->ID, 'full');
?>
<div class="col">
<div class="numberCounter">
<div class="numSec">
<img src="<?php echo esc_url($featuredImage); ?>" alt="">
<h2><?php echo get_field("no", $whyChooseListListVal->ID); ?>+</h2>
</div>
<h4><?php echo get_the_title($whyChooseListListVal->ID); ?></h4>
<p style="font-size: 12px; width: 70%; margin: 0 auto"><?php echo get_the_content(null, false, $whyChooseListListVal->ID); ?></p>
</div>
</div>
<?php } ?>
</div>
<?php endif; ?>
</div>
</section>