| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/wp-content/themes/iigqrftq/inc/blog/templates/parts/post-format/ |
Upload File : |
<?php
$gallery_meta = get_post_meta( get_the_ID(), 'qodef_post_format_gallery_images', true );
if ( ! empty( $gallery_meta ) ) { ?>
<div class="qodef-e-media-gallery qodef-swiper-container">
<div class="swiper-wrapper">
<?php
$gallery_images = explode( ',', $gallery_meta );
foreach ( $gallery_images as $image_id ) {
?>
<div class="qodef-e-media-gallery-item swiper-slide">
<?php if ( ! is_single() ) { ?>
<a itemprop="url" href="<?php the_permalink(); ?>">
<?php } ?>
<?php echo wp_get_attachment_image( $image_id, 'full' ); ?>
<?php if ( ! is_single() ) { ?>
</a>
<?php } ?>
</div>
<?php } ?>
</div>
<div class="swiper-button-prev"><?php qi_render_svg_icon( 'slider-arrow-left' ); ?></div>
<div class="swiper-button-next"><?php qi_render_svg_icon( 'slider-arrow-right' ); ?></div>
</div>
<?php } else {
// Include featured image
qi_template_part( 'blog', 'templates/parts/post-info/image' );
} ?>