Hi All,
I am currently using the below query_post statement to pull thumbnails from the previous 9 posts.
Currently the thumbnails aren't click able, and I wanted to link them to their related post.
Anyone?
[please use the 'code' button to mark the code]
<div id="homebox3">
<?php
$lastposts = get_posts('numberposts=9');
foreach($lastposts as $post) :
setup_postdata($post);
?>
<?php the_post_thumbnail(array(50,50)); ?>
<?php endforeach; ?>
</div><!-- #homebox3 -->