Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/2b9f364b3a09d276ecc9 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/2b9f364b3a09d276ecc9 to your computer and use it in GitHub Desktop.
<?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" ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment