Title: Feature Request: Featured Image
Last modified: August 20, 2016

---

# Feature Request: Featured Image

 *  [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/feature-request-featured-image/)
 * Would love the option to show the featured photos of the most recent posts. This
   is probably a larger request than I realize, but it would be great!
 * Thanks for the plugin also.
 * [http://wordpress.org/extend/plugins/wp-most-popular/](http://wordpress.org/extend/plugins/wp-most-popular/)

Viewing 1 replies (of 1 total)

 *  [Haris](https://wordpress.org/support/users/kanuharis/)
 * (@kanuharis)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/feature-request-featured-image/#post-3135162)
 * Its not a big thing as you think if you use template tag. Just add
    `<a href="
   <?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>` and use css to
   show the image the way you want. to change the thumbnail size check this link
   [ Click here ](http://codex.wordpress.org/Function_Reference/the_post_thumbnail)
 * the full code
 *     ```
       <?php
       echo '<ul>';
       $posts = wmp_get_popular( array( 'limit' => 10, 'post_type' => 'post', 'range' => 'monthly' ) );
       global $post;
       if ( count( $posts ) > 0 ): foreach ( $posts as $post ):
           setup_postdata( $post );
           ?>
           <li><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('your_custom_thumbnail'); ?></a><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
   
           <?php
       endforeach; endif;
       echo '</ul>';
       ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Feature Request: Featured Image’ is closed to new replies.

 * ![](https://ps.w.org/wp-most-popular/assets/icon.svg?rev=1861383)
 * [WP Most Popular](https://wordpress.org/plugins/wp-most-popular/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-most-popular/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-most-popular/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-most-popular/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-most-popular/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-most-popular/reviews/)

## Tags

 * [featured image](https://wordpress.org/support/topic-tag/featured-image/)
 * [image](https://wordpress.org/support/topic-tag/image/)
 * [photos](https://wordpress.org/support/topic-tag/photos/)

 * 1 reply
 * 2 participants
 * Last reply from: [Haris](https://wordpress.org/support/users/kanuharis/)
 * Last activity: [13 years, 6 months ago](https://wordpress.org/support/topic/feature-request-featured-image/#post-3135162)
 * Status: not resolved