Files
toppic/galleries/template-gallery-Fullscreen.php
2024-04-06 11:45:36 +02:00

27 lines
570 B
PHP

<?php global $post; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
galleryFS();
$content = get_the_content();
if(!empty($content)) { ?>
<div class="info-fs-form kk-active-button">
<!-- start info close icon -->
<div class="kk-info-close">
<span></span>
</div>
<!-- end info close icon -->
<div class="content-inner-wrapper">
<div class="content-child">
<?php the_content(); ?>
</div>
</div>
</div>
<?php } ?>
<?php endwhile; ?>
<?php endif; ?>