Quote:
Originally Posted by DirtyWhiteBoy
I get an error when I include the thumbnail line, but I remove it and they show up with text and permalink as it should.
Any idea what in that line would give me fatal error?
|
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.