Einzelnen Beitrag anzeigen
Alt 09.12.2007, 13:39   #4 (permalink)
sandwich01
PostRank: 1
 
Registriert seit: 28.11.2007
Beiträge: 38
Habe genau das selbe Anliegen, ich will bestimmte Kategorien auf der Startseite ausblenden, mein index.php Code:

PHP-Code:
<?php get_header(); ?>

    <div id="content">

    <?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post(); ?>
            <div class="entry">
            <div id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2><?php if(function_exists('the_ratings')) { the_ratings(); } ?>
                <p class="postmetadata"><?php the_time('F jS, Y'?> by <?php the_author() ?> | Posted in <?php the_category(', '?> | <?php edit_post_link('Edit'''' | '); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>


                <?php the_content('Weiter lesen &raquo;'); ?>
                

                
            </div></div>

        <?php endwhile; ?>

        <div class="navigation">
            <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries'?></div>
            <div class="alignright"><?php previous_posts_link('Next Entries &raquo;'?></div>
        </div>

    <?php else : ?>
            <div class="entry">
        <h2>Not Found</h2>
        <p>Sorry, but you are looking for something that isn't here.</p>
        </div>
    <?php endif; ?>

    </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
Dann habe ich sie so geändert, doch dann kommt ein Fehler und es erscheint nur die Fehlermeldung:
PHP-Code:
<?php get_header(); ?>

    <div id="content">

    <?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post(); ?>
        <?php if (! in_category('11')) { ?> 
            <div class="entry">
            <div id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2><?php if(function_exists('the_ratings')) { the_ratings(); } ?>
                <p class="postmetadata"><?php the_time('F jS, Y'?> by <?php the_author() ?> | Posted in <?php the_category(', '?> | <?php edit_post_link('Edit'''' | '); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>


                <?php the_content('Weiter lesen &raquo;'); ?>
                

                
            </div></div>

        <?php endwhile; ?>

        <div class="navigation">
            <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries'?></div>
            <div class="alignright"><?php previous_posts_link('Next Entries &raquo;'?></div>
        </div>

    <?php else : ?>
            <div class="entry">
        <h2>Not Found</h2>
        <p>Sorry, but you are looking for something that isn't here.</p>
        </div>
    <?php endif; ?>

    </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
Wäre für Hilfe dankbar!

PS: Ich will mehrere Kategorien verstecken...
sandwich01 ist offline   Mit Zitat antworten