Created
August 27, 2013 07:20
-
-
Save spencejs/6350588 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
$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