I have a question. I need to have, in my archive.php file, a exclusion of a specific category. given what I have now, how would I make that happen?
Here is the code:
<?php
query_posts(array(
'post_type' => 'post',
'showposts' => 5
) );
?>
<?php while (have_posts()) : the_post(); ?>
<div class="blogcontentlinks">
<a style="text-decoration:none;" href="<?php the_permalink() ?>"><h2><?php the_title(); ?></h2></a>
<p style="">Posted on <?php the_time('m/j/y g:i A') ?><br />Categories: <?php the_category(' ') ?><br />Tags: <?php the_tags(' ') ?></p>
<p><?php the_excerpt(); ?></p>
<p> </p>
</div>
<?php endwhile;?>
Thank you