the_post_thumbnail( 'medium' );
-
I need some help im trying to configure the thumbnails on the content.php page on my site.
Now in the functions I have my thumbnails set up properly. Large, Medium, Small….
// Thumbnail sizes add_image_size( 'large', $content_width, 9999, false ); // 940 => Full width thumb for 1-col page add_image_size( 'medium', 620, 9999, false ); // 620 => Full width thumb for 2-col/3-col page add_image_size( 'small', 195, 195, false ); // Square'ish thumb floated left
So im trying to use the
the_post_thumbnail( 'medium' );
code on the content page and it works it shows the image. If i right click the image everything is fine https://strewco.com/site/wp-content/uploads/2012/02/test-blog5-620×412.jpg as you can see its 620 Width…But when it displays it comes out smaller even though the picture is the right size for some reason its not filling up the space on the size.. the same pictuer: https://strewco.com/site/wp-content/uploads/2012/02/test-blog5-620×412.jpg comes out as if it was 320×212… how can i get it to come out the real size??
Do you guys get what im saying..?
- The topic ‘the_post_thumbnail( 'medium' );’ is closed to new replies.