Last active
July 26, 2017 11:01
-
-
Save lvl99/aee037ed7752f42b8ad07aafd444b4dc to your computer and use it in GitHub Desktop.
Use Fancybox instead of Jetpack's Carousel to display images in a lightbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data-fancybox="gallery" | |
data-src="<?php echo esc_url( $item->large_file() ); ?>" | |
data-srcset="<?php echo esc_url( $item->large_file() ); ?> 1200w, <?php echo esc_url( $item->medium_file() ); ?> 640w" | |
data-width="<?php echo esc_attr( $item->meta_width() ); ?>" | |
data-height="<?php echo esc_attr( $item->meta_height() ); ?>" | |
data-caption="<?php echo esc_attr( wptexturize( $item->image->post_title ) ); ?>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment