Advertisement
mazurides

Untitled

Jul 28th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <!-- OPEN .flexslider -->
  2. <div class="flexslider">
  3.  
  4. <ul class="slides">
  5.  
  6. <?php foreach ($attachments as $attachment) : ?>
  7.  
  8. <?php $src = wp_get_attachment_image_src( $attachment->ID, 'showcase-image'); ?>
  9. <?php $lightbox_img_src = wp_get_attachment_image_src( $attachment->ID, 'large'); ?>
  10.  
  11. <li>
  12. <a class="figure-img gallery-post" data-gal="prettyPhoto[pp_gal_article]" href="<?php echo $lightbox_img_src[0]; ?>" title="<?php echo apply_filters('the_title', $attachment->post_title); ?>">
  13. <img height="<?php echo $src[2]; ?>" width="<?php echo $src[1]; ?>" title="<?php echo apply_filters('the_title', $attachment->post_title); ?>" alt="<?php echo apply_filters('the_title', $attachment-post_title); ?>" src="<?php echo $src[0]; ?>" />
  14. </a>
  15. </li>
  16.  
  17. <?php endforeach; ?>
  18.  
  19. </ul>
  20.  
  21. <!-- CLOSE .flexslider -->
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement