I have a front page on a design I am working on that shows the lastest post then below that the titles of the five other latest posts from 2 to 6.
I have a problem though where I want certain categories NOT to show up in this list.
This is the code I am using to show the posts.
<div id="latest_comments">
<?php if (function_exists('get_recent_comments')) { ?>
<li><h2><?php _e(''); ?></h2>
<ul>
<?php get_recent_comments(); ?>
</ul>
</li>
<?php } ?>
</div><!--latest_comments-->
I do how ever want say "category1", "category2" and "category3" not to show.
How would I go about doing this?
Many thanks in advance,
Sul...