0
votes

I just upload 250x250 resolution images for all of my post. When i set one of the image as featured its getting cropped into 250x198.

I just want to use the uploaded image itself without any modification. I have tried Thumbnail Re-builder plugin,even it doesn't help me out.. :(

1

1 Answers

0
votes

You need to set the post thumbnail dimensions:

http://codex.wordpress.org/Function_Reference/set_post_thumbnail_size

In your theme's functions.php file, add this line:

set_post_thumbnail_size( 250, 250, true );

You will need to rebuild your thumbnails after doing this. Ajax thumbnail rebuild is a great plugin for that.

See the codex link for more explanation.