Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
indutri
:
single-gallery.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php get_header(); ?> <section id="wp-main-content" class="clearfix main-page"> <?php do_action( 'indutri_before_page_content' ); ?> <div class="container"> <div class="main-page-content row"> <!-- Main content --> <div class="content-page col-xs-12"> <div id="gallery-single" class="clearfix"> <?php while ( have_posts() ) : the_post(); ?> <?php $gallery = get_post_meta(get_the_ID(), 'indutri_gallery_images', false ); ?> <div class="camera_wrap camera_magenta_skin" id="camera_wrap_2"> <?php foreach ($gallery as $image) { $img = wp_get_attachment_image_src($image, 'full'); $img_thumb = wp_get_attachment_image_src($image, 'thumbnail'); ?> <div data-thumb="<?php echo esc_url($img_thumb[0]) ?>" data-src="<?php echo esc_url($img[0]) ?>"></div> <?php } ?> </div> <?php endwhile; ?> </div> </div> </div> <?php do_action( 'indutri_after_page_content' ); ?> </section> <?php get_footer(); ?>