image URL / IMAGE in lightbox
-
hi, when i upload larg images they make my comments super long and not nice. so i modified the code, these are the steps to make the image appear in a nice LIghtbox.
1) install the plugin WP Lightbox 2
2) on line 563, replace this:
$comment->comment_content .= '<img src="' . $comment_image['url'] . '" alt="" />';
with this:
$comment->comment_content .= '<a href="' . $comment_image['url'] . '" rel="lightbox[roadtrip]"><img src="' . $comment_image['url'] . '" alt="" /></a>';
3) you should style it, somthing like that:
.comment-image{ width:20%; padding:5px; float:right; }
- The topic ‘image URL / IMAGE in lightbox’ is closed to new replies.