Last active
July 27, 2016 05:50
-
-
Save developer-anuragsingh/2b9f364b3a09d276ecc9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
// 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