View Single Post
Old 10-24-2010, 02:22 AM  
Jdoughs
Confirmed User
 
Jdoughs's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Great White North
Posts: 5,794
You can do it easily with no plugins, there probably is lots of them, but it's all built into wp now, this calls the post thumbnail:
Code:
<?php the_post_thumbnail( array(265,265) ); ?>
This calls the title:
Code:
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
This calls the exerpt:
Code:
<?php the_excerpt(); ?>
It does have to be in the loop, you may need to do a fresh wp query for the posts.

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; ?>
__________________
LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
AmeriNOC - Proudly hosted @ AmeriNOC!

Last edited by Jdoughs; 10-24-2010 at 02:23 AM..
Jdoughs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote