ниже приведен фактический код моего цикла:
<div class="forms-container">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php
$custom_query = new WP_Query($args); // exclude category 9
while($custom_query->have_posts()) : $custom_query->the_post();
$image = get_the_post_thumbnail(get_the_ID()); ?>
<div class="col-md-4">
<a href="<?php the_post_thumbnail_url(); ?>" class="form-img">
<?php echo $image; ?>
</a>
</div>
<?php endwhile; ?>
</div>
</div>
</div>