$args = array(
'post_type' => 'webinar',
'posts_per_page' => 3,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'webinars',
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'upcoming',
'operator' => 'NOT IN',
)
)
);
<?php if( have_rows('repeater_field_name') ): ?>
<section class="section">
<div class="row">
<h2 class="section__title">Title 1</h2>
</div>
<div class="row">
<?php while ( have_rows('repeater_field_name') ) : the_row(); ?>
<div class="col-sm-4">
<div class="item">
<span class="icon glyphicon <?php the_sub_field('icon'); ?>"></span>
<div class="item__body"><?php the_sub_field('text'); ?></div>
</div>
</div>
<?php endwhile; ?>
</div>
</section>
<?php endif; ?>
<?php if( get_field('field_name') ): ?>
<p>My field value: <?php the_field('field_name'); ?></p>
<?php endif; ?>