Multiple featured image sizes
-
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
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
The topic ‘Multiple featured image sizes’ is closed to new replies.