Skip to content

Instantly share code, notes, and snippets.

@pedrorvidal
Last active August 29, 2015 14:01
Show Gist options
  • Save pedrorvidal/e24c902010d172eec6e4 to your computer and use it in GitHub Desktop.
Save pedrorvidal/e24c902010d172eec6e4 to your computer and use it in GitHub Desktop.
<?php
#source http://blog.escapecreative.com/wordpress-display-all-images-attached-to-post-page/
$images =& get_children( array (
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image'
));
if ( empty($images) ) {
// no attachments here
} else {
foreach ( $images as $attachment_id => $attachment ) {
echo wp_get_attachment_image( $attachment_id, 'thumbnail' );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment