%k25u25%fgd5n!
<?php /** * The Template for gallery inner */ get_header(); if ( function_exists( 'FW' ) ): $windazo_list = fw_get_db_post_option( get_the_ID(), 'photos' ); ?> <div class="margin-default"> <div class="gallery-page gallery-inner"> <div class="container"> <div class="row"> <?php foreach ( $windazo_list as $item ) : ?> <div class="col-lg-4 col-md-4 col-sm-6 col-ms-6 mdiv"> <div class="item"> <a href="<?php echo esc_url( $item['url'] ); ?>" class="swipebox photo"> <?php echo wp_get_attachment_image( $item['attachment_id'], 'windazo-gallery' ); ?><span class="fa fa-search"></span> <span class="ltx-border-top"></span><span class="ltx-border-bottom"></span> </a> </div> </div> <?php endforeach; ?> </div> </div> </div> </div> <?php endif; get_footer();