2009-07-28 4 views
0

Ich möchte, dass auf meiner Startseite Beiträge aus allen Kategorien mit Ausnahme von "Musik" angezeigt werden. Und ich möchte nicht, dass sich die Verbindung ändert. Wie kann ich die Ergebnisse der Seite "Erste Seite" oder "Beiträge" aufrufen und eine Kategorie herausfiltern?Wie zeige ich Beiträge ohne eine Kategorie auf der Blog-Startseite an?

Ich gehe davon aus, dass ich einen Aufruf an die Wordpress-API machen muss.

Danke!

Antwort

0
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

<!-- If the post is in the category we want to exclude, we simply pass to the next post. --> 
<?php if (in_category('3')) continue; ?> 

<div class="post"> 

    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> 

    <small><?php the_time('F jS, Y'); ?></small> 

    <div class="entry"> 
    <?php the_content(); ?> 
    </div> 

    <p class="postmetadata">Posted in <?php the_category(', '); ?></p> 
</div> <!-- closes the first div box --> 

<?php endwhile; else: ?> 
<p>Sorry, no posts matched your criteria.</p> 
<?php endif; ?> 
Verwandte Themen