<div class="kitchen-slider__item" data-type="1"><img src="https://kuhzavod.ru/upload/iblock/c70/c70d49941e5572e458e68dd65bb227fb.jpg"/></div>
the_sub_field || get_sub_field
<?php
$images = get_field('foto');
$size = 'full';
if( $images ): ?>
<ul>
<?php foreach( $images as $image ): ?>
<li>
<?php echo wp_get_attachment_image( $image['ID'], $size ); ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php
// check if the repeater field has rows of data
if( have_rows('repeater_field_name') ):
// loop through the rows of data
while ( have_rows('repeater_field_name') ) : the_row();
// display a sub field value
the_sub_field('sub_field_name');
endwhile;
else :
// no rows found
endif;
?>
<?php echo avada_render_rich_snippets_for_pages(); ?>
_e( 'Your Ad here', 'my-text-domain' );
__( 'Hello, dear user!', 'my-text-domain' );