Guest User

Untitled

a guest
Oct 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function allphotos_shortcode(){
  2.  
  3. $images = get_field('fl_gallery');
  4.  
  5. if( $images ) {
  6. $output .= '<ul id="kalpht">';
  7. foreach( $images as $image ) :
  8. $output .= '<li><a class="x-img-link" href="' . $image['url'] .'" data-options="thumbnail:'' . $image['sizes']['mini-me'] . ''"><img src="' . $image['sizes']['mini-me'] . '" alt="' . $image['alt'] . '" /></a></li>';
  9. endforeach;
  10. $output .= '</ul>' . do_shortcode('[lightbox opacity="0.9" thumbnails="true"]');
  11. }
  12.  
  13. return $output;
  14. }
  15.  
  16. add_shortcode('allphotos', 'allphotos_shortcode');
Add Comment
Please, Sign In to add comment