Files
sportpressa_backend/template-parts/content-cards.php

14 lines
421 B
PHP
Raw Normal View History

2026-01-08 20:53:00 +03:00
<?php
// template-parts/content-cards.php
// Проверяем, есть ли записи в текущем запросе
if (have_posts()) : ?>
<div class="news-block">
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('template-parts/content', 'card'); ?>
<?php endwhile; ?>
</div>
<?php else : ?>
<p>Записей не найдено.</p>
<?php endif; ?>