2026-08-07 11:52:31 +00:00

22 lines
875 B
PHP

<?php
// ─── Мини-галерея (CF school_gallery) ───
if (! defined('ABSPATH')) exit;
$gallery_photos = crb_get_post_meta(get_the_ID(), 'school_gallery');
if (empty($gallery_photos) || ! is_array($gallery_photos)) return;
?>
<section class="school-gallery reveal" aria-hidden="true">
<div class="container">
<div class="school-gallery__grid">
<?php foreach ($gallery_photos as $item) :
$photo_id = (int)($item['photo'] ?? 0);
if (! $photo_id) continue;
?>
<div class="school-gallery__item">
<img src="<?php echo esc_url(wp_get_attachment_url($photo_id)); ?>" alt="Школа Декарт — начальные классы" loading="lazy" class="school-gallery__img">
</div>
<?php endforeach; ?>
</div>
</div>
</section>