Guest User

Untitled

a guest
Feb 28th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#myModal .post_content img").each(function(){
  2.    
  3.     //get the imgs url
  4.     var imgSrc = $(this).attr("src");
  5.    
  6.      //put the image inside a div
  7.     $(this).wrap('<div class="lightgallery"></div>');
  8.    
  9.     //adds the button to launch the lightbox (include thumbnail)
  10.     $(this).prepend('<a href="'+imgSrc+'"><img data-sub-html="'.get_post(get_post_thumbnail_id())->post_excerpt.'" class="slider-image-fullscreen" data-src="'.get_the_post_thumbnail_url($postid,'full').'" src="'.get_template_directory_uri().'/images/Magnifier.png"></a>');
  11.  
  12. });
Add Comment
Please, Sign In to add comment