Hallo,
der Titel verrät schon was ich will. Beiträge beispielsweise aus der Kategorie 3 sollen nicht angezeigt werden. Ich dachte das könnte man so ändern:
PHP
<div id="content" class="narrowcolumn">
<?php query_posts("exclude=3"); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" 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>
<small><?php the_time('j. F Y, H:i') ?>
· Filed Under <?php the_category(', ') ?> <strong><?php edit_post_link('Bearbeiten',''); ?></strong></small>
<div class="entry">
<?php the_content('Den ganzen Beitrag lesen »'); ?>
</div>
<?php comments_popup_link('0 Kommentare »', '1 Kommentar »', '% Kommentare »'); ?>
</div>
<?php endwhile; ?>
Alles anzeigen
Aber ich lag wohl falsch.
Kann mir jemand weiterhelfen? :)
Viele Grüße
Jan