Hi,
I'm trying to exclude posts from one category on the home page. I'm using WP3RC3 and this is what I tried. I am absolutely dumb with regards to PHP and programming in general.
//Exclude posts from category xyz
function excludeposts() {
if (is_home()) {
query_posts("cat=-4136");
}
}
add_filter ('thematic_content','excludeposts');
Thanks for the help --any help.