Quote:
Originally Posted by Jdoughs
This should work, complete without any css to it:
Code:
<?php $recent = new WP_Query('showposts=6'); while($recent->have_posts()) : $recent->the_post();?>
<?php the_post_thumbnail( array(265,265) ); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>
|
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?