Wordpress Quirks: Why Featured Images Don't Display As Thumbnails On A Newly Installed Theme
Wordpress Quirks: Why Featured Images Don't Display As Thumbnails Correctly
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 350, 150, true );
add_image_size( 'post-thumb', 350, 150, true );
}
http://wordpress.org/support/topic/cannot-select-featured-image-sizes-only-original-sizeEven though we tried it, we knew this solution didn't make sense because this code never had to be added before in order for thumbnails to display at the correct size in previous themes. We even tried reaching out to the theme creator for help and this seemed to even stump them.
To make a long story short, after we set permissions to allow the image directories to be editable, we simply had to remove the images from every post and re-upload them back to the server.
wordpress/wp-content/uploads
In other words, the problem resided in the fact that we began to edit the site before all file permissions were set. Once we fixed the permissions, the images needed to be removed and uploaded again.
Quick Solution: Remove all images that are not displaying corrects and upload again to your host.