Quote:
Originally Posted by Jdoughs
It's probably the width/height settings or there is no matching thumbnails on the posts, but here's a great explanation off wp wiki. Try the default one and see if they show up.
Code:
the_post_thumbnail(); // without parameter -> Thumbnail
the_post_thumbnail('thumbnail'); // Thumbnail
the_post_thumbnail('medium'); // Medium resolution
the_post_thumbnail('large'); // Large resolution
the_post_thumbnail( array(100,100) ); // Other resolutions
EDIT, yeah I'm sorry, they will work like above, but the example I showed with the array and sizes only works if your theme is thumbnail ready I think.
|
I'm on it. Thanks. Appreciate it.