In your sidebar find this:
<?php wp_list_categories(); ?>
And change it to this:
<?php wp_list_categories('exclude=1'); ?>
This assumes that the “Uncategorized” category ID is 1. (Check by looking at your category list.) You can always exclude any number of categories. If you also wanted to exclude category ID 6, along with category ID 1, you’d put this:
<?php wp_list_categories('exclude=1,6'); ?>
Read about all the fun you can have with this tag here:
http://codex.wordpress.org/Template_Tags/wp_list_categories
HTH.
As an aside, the paradox of having posts categorized as “Uncategorized” leads me to rename the category to something like “General” every time I install WordPress.
Hello,
I would like to exclude the posts of a certain category to be excluded from the front page but be reacheble from the category list. Can this be done?.
Add this before The Loop in your index.php
<?php query_posts($query_string . ‘&cat=-1’); ?>
See the template tag, query_posts().