anurag-singh
8/20/2015 - 9:49 AM

Display all images directly from post meta field

<?php
	// Display all images directly from post meta field
	$postMeta = get_post_meta($post->ID, 'YOUR_META_KEY');
	
	foreach ($postMeta as $attachmentId) {
	    echo wp_get_attachment_image( $attachmentId, 'large', "", array( "class" => "img-fluid" ) );
	}		    						
?>