I need help to exclude two categories from appearing on my front page. I use this code in index.php:
<?php
if ($posts)
{
foreach($posts as $post)
if (is_home() || is_front_page() ) {
query_posts("cat=-32,-71");
}
{
start_wp();
?>
But it doesn't work. The codex says it does, but it doesn't.