I am using the wordpress function the_post_thumbnail(); but it seems to behave differently in different places. I have the following code on one page:
the_post_thumbnail(array('275', '190'));
Does exactly what it's supposed to, i get a thumbnail exactly 275 x 190 that has been cropped to fit. I then paste this code to a different template and this time the image has been resized to the maximum dimension, either 275 wide if its landscape or 190 if its portrait.
Anyone know whats going on?