Easy Light Box isnt working
-
I am trying to make your plugin working with my custom slider. I have added the class to my image URL, but for some reason this isnt working.
Can you help?
Here is my code:
<div class="portfolio-items"> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id, true); ?> <a href="<?php echo $thumb_url[0]; ?>" class="litebox"> <?php the_post_thumbnail(); ?> </a> </div> <?php if( have_rows('galeria_imagens') ) { ?> <?php while( have_rows('galeria_imagens') ): the_row(); $image = get_sub_field('portfolio_imagem'); ?> <div class="portfolio-items"> <a href="<?php echo $image['url']; ?>" class="litebox"> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>" /> </a> </div> <?php endwhile; ?>
- The topic ‘Easy Light Box isnt working’ is closed to new replies.