<?php
$actualLoop = new WP_Query(array(
'posts_per_page' => 3,
'post_type' => 'post',
'orderby' => 'date',
'order' => 'DESC',
'meta_query' => array(
array(
'key' => 'is_actual',
'value' => '1',
'compare' => 'LIKE',
)
),
));
if ( $actualLoop->have_posts() ) : ?>
<?php while ( $actualLoop->have_posts() ) : $actualLoop->the_post();
$is_actual = get_field('is_actual');
?>
<?php if ($is_actual): ?>
<a href="<?php the_permalink() ?>">
<div class="news-block">
<div class="img-wrapper">
<?php if (has_post_thumbnail()) {
the_post_thumbnail();
}?>
</div>
<h3 class="news-block-title"><?php the_title(); ?></h3>
<div class="news-block-excerpt">
<?php the_excerpt(); ?>
</div>
</div>
</a>
<?php endif ?>
<?php endwhile;?>
<?php endif; wp_reset_postdata(); ?>