Here am i. I took a minute to modify the things.
To exclude a cat from being viewed just simply search at the index.php of YOUR THEME the line
<?php while (have_posts()) : the_post(); ?>
add below it the line
<?php if (!in_category(‘NUMBER’) ): ?> <- Number is the number of the excluded cat of your choice.
Then you should see a <div> Tag, usually with the class=”post”
The script uses whitespaces to split the different tags, so go a little bit down and at the same height with the <div> you should find the </div> Tag for the same div.
Add BELOW it the line
<?php endif; ?>
and be happy ??
Warning: I modified the trackback and rss feed tags, being precisely i removed them, so proceed with caution, the version above works for me, but be carefull if you place the rss feed below the endif line, an rss feed is generated for the invisible post.
There is no posibility to make a plugin for it, except rewriting some functions of WP and this is diffucult because all of you want other categories invisible, im sure ??