Guest User

Untitled

a guest
Oct 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. Replace this (line 167):
  2.  
  3. <a class="prettyPhoto<?php if ( $i == $img_count ) { echo ' last_attached_image'; } ?>" rel="gallery[<?php echo $post->ID; ?>]" title="<?php echo $img_title; ?>" href="<?php echo $image_src[0]; ?>"><img<?php if ( $i == $img_count && $cap == '') { echo ' class="no_bottom_margin"'; } ?> src="<?php echo $image['url']; ?>" width="<?php echo $image['width']; ?>" height="<?php echo $image['height']; ?>" alt="" /><?php echo $cap; ?></a>
  4.  
  5.  
  6. with this:
  7.  
  8. <a style="position: relative;" class="<?php if ( $i == $img_count ) { echo 'last_attached_image'; } ?>" title="<?php echo $img_title; ?>" href="<?php the_permalink(); ?>?ss=true"><img<?php if ( $i == $img_count && $cap == '') { echo ' class="no_bottom_margin"'; } ?> src="<?php echo $image['url']; ?>" width="<?php echo $image['width']; ?>" height="<?php echo $image['height']; ?>" alt="" style="margin-right: 0; margin-bottom: 15px; display: inline;" /><?php echo $cap; ?></a>
Add Comment
Please, Sign In to add comment