Is there an easy way to add an exclude category function to this recent posts query? I have one category that I don't want to show when this pulls up recent posts. Any help is appreciated.
Code:
<?php
$show_post = 3;
$recent_posts = new WP_Query();
$recent_posts->query('showposts='.$show_post.'&orderby=date');
while ($recent_posts->have_posts()) : $recent_posts->the_post();
?>