Hi thanks for the help, the code is below. I’ve tried something similar to whats you’ve said, but it didn’t seem to work.
<div id="latestframe">
<?php if (have_posts()) : ?>
<?php query_posts('posts_per_page=4'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="latestboxes"><a href="<?php $category = get_the_category(); echo $category[0]->cat_slug; ?>"><img src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" border="0" /></a></div>
<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, no results where found.</p>
<?php endif; ?>
</div>
Let me know what you think ??