Auto-lightbox image links – feature image?
-
Does the … Auto-lightbox image links
Option work for feature images? It did not work on my site.I am using a custom post type with a custom template. I got it to work with this…
<?php
if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), ‘large’);
echo ‘‘;
the_post_thumbnail(‘one-column-feature’);
echo ‘‘;
}
?>the rel=”lightbox” is hardcoded in now. Works fine, but would be cool if you could add that.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Auto-lightbox image links – feature image?’ is closed to new replies.