How can I set full image thumbnail on category pages? Image should be small in dimensions but not been cropped. Currently my theme WP-Davici (Solostream) use “Get The Image” plugin to generate thumbnail. you may have a look at http://ideabroad.com/
Leave a Reply
You must be logged in to post a comment.
These are two different things:
vs
In order to display the full-size image thumbnail, use:
In order to display a box-resized, rather than hard-cropped, image, you need to tell WordPress to box-resize the image rather than hard-crop it, via the
add_image_size()
call used to create the thumbnail image size..$width
and$height
parameters passed toadd_image_size()
.$width
or$height
, as appropriate.You define this action in the
add_image_size()
call infunctions.php
, like so:The fourth parameter,
$crop
, specifies whether to hard-crop (true
) or to box-resize (false
) the image.