Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Created March 19, 2015 05:38
Show Gist options
  • Save digisavvy/20792638abf81930187f to your computer and use it in GitHub Desktop.
Save digisavvy/20792638abf81930187f to your computer and use it in GitHub Desktop.
Jetpack carousel fun
// Image Markup
<dl class="gallery-item">
<dt class="">
<a href="//localhost:3000/shows/uncle-vanya/deathtostock_neighbors5/">
<img width="1024" height="683" src="//localhost:3000/wp-content/uploads/2015/03/DeathtoStock_Neighbors5-1024x683.jpg" class="attachment-large" alt="DeathtoStock_Neighbors5" data-attachment-id="3708" data-orig-file="//localhost:3000/wp-content/uploads/2015/03/DeathtoStock_Neighbors5.jpg" data-orig-size="4927,3285" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;1.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 5D Mark III&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1426070992&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;50&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.01&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="DeathtoStock_Neighbors5" data-image-description="" data-medium-file="//localhost:3000/wp-content/uploads/2015/03/DeathtoStock_Neighbors5-300x200.jpg" data-large-file="//localhost:3000/wp-content/uploads/2015/03/DeathtoStock_Neighbors5-1024x683.jpg "
></a>
</dt>
</dl>
// My code so far
<h4 class="widget-title">Production</h4>
<?php
$image_ids = get_field('gallery_images', false, false);
$firstimg = wp_get_attachment_url ( $image_ids[0] );
$shortcode = '[gallery size="large" columns="1" ids="' . implode(',', $image_ids) . '"]';
echo do_shortcode( $shortcode );
?>
<a class="view-gallery" href="<?php echo $firstimg; ?>">View Gallery</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment