Störend?? Wer hat das denn behauptet :confused: Bitte nix einfach so unterstellen 
Arbeitest du mit WP 2.7? Dann versuch es mal mit is_front_page (statt is_home). Ansonsten ist is_home schon richtig.
Und dann musst du die Kategorie ID herausfinden die du ausschließen willst. ID 1 wird es wohl kaum sein. Die ID siehst du wenn du im Backend diese Kategorie ausgewählt hast ... in der Browseradressleiste ganz hinten.
<?php get_header(); ?>
<div id="content"><a name="content"></a>
<?php include (TEMPLATEPATH . '/featured.php'); ?>
<?php include (TEMPLATEPATH . '/glide.php'); ?>
[COLOR=Red]<?php
if (is_front_page()) {
query_posts($query_string . "&cat=[B]-??[/B]");
}
?>[/COLOR]
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
...
...
...
Alles anzeigen