Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?php
  2. $images = get_field('realizacie_galeria');
  3. if( $images ): ?>
  4. <ul id="hexGrid">
  5. <?php foreach( $images as $image ): ?>
  6. <div class=hexa-wrap>
  7. <a class="hexa-anchor" rel="lightbox" href="<?php echo esc_url($image['url']); ?>">
  8. <svg class="svg-class" version="1.1" xmlns="http://www.w3.org/2000/svg" width="174" height="200" viewbox="0 0 173.20508075688772 200" style="position: absolute;"><path d="M77.94228634059948 4.999999999999999Q86.60254037844386 0 95.26279441628824 4.999999999999999L164.54482671904333 45Q173.20508075688772 50 173.20508075688772 60L173.20508075688772 140Q173.20508075688772 150 164.54482671904333 155L95.26279441628824 195Q86.60254037844386 200 77.94228634059948 195L8.660254037844387 155Q0 150 0 140L0 60Q0 50 8.660254037844387 45Z"></path></svg>
  9. <li class="hex hexGallery">
  10. <div class="hexIn">
  11. <div class="hexLink" rel="lightbox" href="<?php echo esc_url($image['url']); ?>">
  12. <img src="<?php echo esc_url($image['sizes']['thumbnail']); ?>" alt="<?php echo esc_attr($image['alt']); ?>" />
  13. </div>
  14. </div>
  15. <p><?php echo esc_html($image['caption']); ?></p>
  16. </li>
  17. </a>
  18. </div>
  19. <?php endforeach; ?>
  20. </ul>
  21. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement