PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
themes
/
webon
/
inc
/
blog
/
templates
/
parts
/
post-format
<?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 webon_render_svg_icon( 'arrow-left' ); ?></div> <div class="swiper-button-next"><?php webon_render_svg_icon( 'arrow-right' ); ?></div> </div> <?php } else { // Include featured image webon_template_part( 'blog', 'templates/parts/post-info/image' ); } ?>
[+]
..
[-] video.php
[edit]
[-] audio.php
[edit]
[-] quote.php
[edit]
[-] link.php
[edit]
[-] gallery.php
[edit]