Skip to content

Instantly share code, notes, and snippets.

@bMinaise
Created September 6, 2013 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bMinaise/6458477 to your computer and use it in GitHub Desktop.
Save bMinaise/6458477 to your computer and use it in GitHub Desktop.
Wordpress Get Galleries
$gallery = get_post_gallery( $post, false );
$ids = explode( ",", $gallery['ids'] );
foreach( $ids as $id ) {
$link = wp_get_attachment_url( $id );
$image = wp_get_attachment_image( $id, "thumbnail");
echo( "<div class='item'><a href='$link'>" . $image . "</a></div>" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment