Title: POST_THUMBNAIL question
Last modified: March 29, 2017

---

# POST_THUMBNAIL question

 *  Resolved [Sho-Down](https://wordpress.org/support/users/sho-down/)
 * (@sho-down)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/post_thumbnail-question/)
 * When using `%POST_THUMBNAIL%` in the highest rated template I’d like to create
   a thumbnail size using `add_image_size` in my functions file. Currently WP_PostRatings
   uses 96×96 so I’m having to resize it using CSS and I’d rather just serve the
   50×50 thumbnail image. Is there a way to do this?

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

 *  Plugin Author [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/post_thumbnail-question/#post-8972284)
 * Unfortunately not, it uses the default WP thumbnail size set by your theme or
   WordPress.
 *  Thread Starter [Sho-Down](https://wordpress.org/support/users/sho-down/)
 * (@sho-down)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/post_thumbnail-question/#post-8980111)
 * I got it working. I’ve already disabled all WordPress image/thumbnail sizes and
   disabled my theme’s sizes and created my own sizes, adding the following to my
   functions file fixed it:
 *     ```
       if ( function_exists( 'add_image_size' ) ) {
       add_image_size( 'thumbnail', 50, 50, false );
       }
       ```
   
 * Thanks.

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

The topic ‘POST_THUMBNAIL question’ is closed to new replies.

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

## Tags

 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)

 * 2 replies
 * 2 participants
 * Last reply from: [Sho-Down](https://wordpress.org/support/users/sho-down/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/post_thumbnail-question/#post-8980111)
 * Status: resolved