Hi,
Just a quick question. On my frontpage, there is a short archive 'list', with postcounts after every month. It looks like this:
may (34)
april (41)
march (33)
The code for this is:
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
My question: Is it possible to count all the posts, EXCEPT the ones in 1 specific category? The reason for this is that I am excluding the posts in this category on my front page (and archive page) too.
Thanks in advance!