Доброй ночи.
А как проверить наличие заполненых полей acf?
В общем-то задача такая, если поле не заполнено то секцию мы не выводим .
Пробовал вот так , но не выходит :
<?php
if( have_rows('video') ):
while ( have_rows('video') ) : the_row();
if( get_field('video') ) {
?>
<section class="video">
<div class="container">
<h2 class="u-subtitle"><?php the_sub_field('title'); ?></h2>
<iframe src="<?php the_sub_field('video'); ?>" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<a href="#" class="u-btn">заказать сейчас</a>
</section>
<?php
}
endwhile;
else :
// вложенных полей не найдено
endif;
?>