grouping images on the same page
-
How do I group images on the same page to display as a slideshow when one is clicked?
I have implemented Simple Lightbox in my template like this:
if ( has_post_thumbnail() ) {
$full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'medium' );
$content = '' . get_the_post_thumbnail( $post_id, 'thumbnail' ) . '';
if ( function_exists('slb_activate') ) {
$content = slb_activate($content);
echo $content;
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘grouping images on the same page’ is closed to new replies.