Is it possible to check what image size has been selected for the featured image and only display that image..
For example.
<?php if(has_post_thumbnail('small-image')): ?>
<?php the_post_thumbnail('small-thumb') ?>small image is showing
<?php elseif(has_post_thumbnail('full-thumb')): ?>
<?php the_post_thumbnail('full-thumb') ?>large image is showing
<?php endif ?>
<?php the_post_thumbnail() ?>default image if none selected
Not sure if that makes sense..?