I enabled featured images by adding the following to my functions.php file
add_theme_support('post-thumbnails');
I need two different sizes of the featured image so I then added these two lines
set_post_thumbnail_size(465, 310, TRUE);
add_image_size('article-featured-size', 655, 437, TRUE);
When I am adding a post if I click "Set featured image" choose the file and then click "Use as featured image" the image is uploaded but only saved in it's original size.
I would be expecting the two sizes I set above.
Any ideas on what I am doing wrong?
Thanks