<?php the_field('new'); ?>
и<?= get_field("имя_поля"); ?>
<?= get_field("имя_поля"); ?>
<?php if( have_rows('glavekran') ): ?>
<?php while( have_rows('glavekran') ): the_row();
// Get sub field values.
$yakist = get_sub_field('yakist'); ?>
<div id="hero">
<div class="content">
<?php the_sub_field('yakist'); ?>
<?php echo esc_attr( $yakist['title'] ); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>