View Single Post
Old 10-24-2010, 05:05 AM  
DWB
Registered User
 
Industry Role:
Join Date: Jul 2003
Location: Encrypted. Access denied.
Posts: 31,779
Quote:
Originally Posted by Jdoughs View Post

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?
DWB is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote