Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created October 11, 2013 11:17
Show Gist options
  • Save Clorith/6933108 to your computer and use it in GitHub Desktop.
Save Clorith/6933108 to your computer and use it in GitHub Desktop.
<?php
$gallery = get_post_gallery( get_the_ID(), false );
echo 'IDs: ' . $gallery['ids'];
foreach( $gallery['src'] AS $src )
{
echo $src;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment