Hello I have a thumbnail list that I am using as my recent post list. I need to exclude one or more categories from the list. Thank you in advance... the code is below as well as the url is the list to the far right
http://rebelvision.com/newrebel/print
<ul class="thumb_recent" >
<?php query_posts('showposts=5'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $thumbnail = get_post_meta($post->ID, 'thumbnail', true); ?>
<img src="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" />
<span><!--<?php the_title(); ?>--></span><p>
<?php endwhile; endif; ?>