<section class="recipes">
<div class="container">
<h3 class="section-title">Рецепты для гриля</h3>
<div class="recipes-container">
<?php
$args = array( 'post_type' => 'recipes', 'posts_per_page' => 10 );
$the_query = new WP_Query( $args );
$cat = get_the_category($post->ID);
?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<article class="recipes-item">
<div class="recipes-img">
<?php echo get_the_post_thumbnail( $page->ID, 'full'); ?>
</div>
<div class="recipes-title">
<h3><?php the_title(); ?></h3>
</div>
<p class="recipes-category"><?php echo $cat->cat_name ?></p>
<a href="<?php echo get_permalink(); ?>" class="recipes-link"></a>
</article>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<?php endif; ?>
</div>
</div>
</section>