Title: Show first uploaded image inside post loop?
Last modified: August 22, 2016

---

# Show first uploaded image inside post loop?

 *  [bigship](https://wordpress.org/support/users/bigship/)
 * (@bigship)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/show-first-uploaded-image-inside-post-loop/)
 * Hello using wp simple gallery here. i would like to display first uploaded image
   inside blog post loop. Thanks
 * [https://wordpress.org/plugins/wp-simple-galleries/](https://wordpress.org/plugins/wp-simple-galleries/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [bigship](https://wordpress.org/support/users/bigship/)
 * (@bigship)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/show-first-uploaded-image-inside-post-loop/#post-5352159)
 * i’ve tried with this but doesn’t work
 * <?php if ( get_post_meta( get_the_ID(), ‘wpsimplegallery_gallery’, true ) ) :?
   >
    ” rel=”bookmark”> <img class=”thumb” src=”<?php echo get_post_meta( get_the_ID(),‘
   wpsimplegallery_gallery’, true ); ?>” alt=”<?php the_title(); ?>” />  <?php endif;?
   >
 * It returns array even if “true” specified 🙁
 *  Thread Starter [bigship](https://wordpress.org/support/users/bigship/)
 * (@bigship)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/show-first-uploaded-image-inside-post-loop/#post-5352245)
 * finally i’ve done it 🙂
 * <?php
 *  $post_id = $post->ID;
    $gallery = get_post_meta($post_id, ‘wpsimplegallery_gallery’,
   true);
 *  $image = wp_get_attachment_image_src($gallery[0]);
    echo “<img src=\””.$image[
   0].”\”>”;
 * ?>

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Show first uploaded image inside post loop?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-simple-galleries_7f8da9.svg)
 * [WP Simple Galleries](https://wordpress.org/plugins/wp-simple-galleries/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-simple-galleries/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-simple-galleries/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-simple-galleries/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-simple-galleries/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-simple-galleries/reviews/)

 * 2 replies
 * 1 participant
 * Last reply from: [bigship](https://wordpress.org/support/users/bigship/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/show-first-uploaded-image-inside-post-loop/#post-5352245)
 * Status: not resolved