Вот то что я создал в ACF
Вот мой код в странице на которой вывожу эту группу
<section class="Challenges" id="uber_tabs_3">
<div class="challenges blog-container">
<div class = "wrapper steps">
<h2 class="section_title-little">Challenges and Solutions</h2>
<div class="service">
<div class="service-content">
<div class="uber_tabs_switcher_3 owl-carousel">
<?php if( have_rows('uber_tabs_content_3') ): ?>
<?php $i = 0; ?>
<?php while ( have_rows('uber_tabs_content_3') ) : the_row(); ?>
<?php $i++; ?>
<div data-num="<?php echo $i; ?>" class="tab_switch <?php if($i == 1) echo 'active'; ?>">
<?php $y = get_sub_field('icon'); ?>
<?php echo file_get_contents($y); ?>
<p><?php the_sub_field('title'); ?></p>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="tab_content">
<?php if( have_rows('uber_tabs_content_3') ): ?>
<?php $i = 0; ?>
<?php while ( have_rows('uber_tabs_content_3') ) : the_row(); ?>
<?php $i++; ?>
<div class="tab_content_container <?php if($i == 1) echo 'active'; ?>">
<p class="tab_content_head"><?php the_sub_field('title'); ?></p>
<p><?php the_sub_field('text'); ?></p>
<div class="images">
<?php
$image = get_sub_field('image');
if( !empty($image) ): ?>
<img class="tab_content_background_img" src="<?php echo $image; ?>" />
<?php endif; ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</section>
Почему то не работает. С ACF работаю редко да и в пхп не силён.