The post thumbnail size issues
- by user195257
Hey
Im using this in my wordpress functions.php
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150 );
Im then using it like this
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
However, the image is displayed
<img width="150" height="109" ...
The images themselves are 300px x 300px, anyone know whats going on here?