Advertisement
TangibleDesign

Untitled

Dec 9th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1.  
  2. <div class="swiper-container swiper-container--single">
  3. <div class="swiper-wrapper mh-popup-group">
  4. <?php foreach ( $myhome_estate->get_gallery() as $myhome_image ) : ?>
  5. <div class="swiper-slide">
  6. <a href="<?php echo esc_url( $myhome_image['url'] ); ?>" class="mh-popup-group__element">
  7. <img src="<?php echo esc_url( wp_get_attachment_image_url( $myhome_image['ID'], '' ) ); ?>" alt="<?php echo esc_attr( $myhome_image['alt'] ); ?>">
  8. </a>
  9. </div>
  10. <?php endforeach; ?>
  11.  
  12. </div>
  13. <div class="swiper-pagination"></div>
  14. <div class="swiper-button-next"></div>
  15. <div class="swiper-button-prev"></div>
  16. </div>
  17.  
  18. <div class="swiper-container swiper-container--single-thumbs">
  19. <div class="swiper-wrapper">
  20. <?php foreach ( $myhome_estate->get_gallery() as $myhome_image ) : ?>
  21. <div class="swiper-slide">
  22. <div class="swiper-slide__inner" style="background-image:url(<?php echo esc_url( wp_get_attachment_image_url( $myhome_image['ID'], '' ) ); ?>);"></div>
  23. </div>
  24. <?php endforeach; ?>
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement