codescribblr
2/13/2014 - 9:42 PM

Wordpress get attachements for post or page

Wordpress get attachements for post or page

$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_parent' => $post->ID
);
$images = get_posts( $args );
foreach($images as $image):
echo wp_get_attachment_image($image->ID, 'medium');
endforeach;