Vielen Dank für die schnelle Antwort. Obwohl meine Frage falsch gestellt war.
Du hattest Recht, aber so ergibt sich im Grunde auch ein anderes Problem. Ich würde jetzt gerne bestimmen wollen, dass auf der Startseite (home, front_page - wie auch immer) nur Beiträge der ersten Kategorie angezeigt werden.
Ich wüsste aber nicht, wie und wo ich das in meiner index.php festlegen könnte:
<?php
get_header();
?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="entry <?php if(is_home() && $post==$posts[0] && !is_paged()) echo ' firstpost';?>">
<h3 class="entrytitle" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a> </h3>
<div class="entrymeta">
<?php the_time('j. F Y ');?> <?php _e('| Category:','sunshine');?> <?php the_category(',');?>
</div>
<div class="entrybody">
<?php the_content(__('» Read more','sunshine'));?>
</div>
<div class="entrymetabottom">
<?php comments_popup_link(__('Leave a comment','sunshine'),__('1 comment','sunshine'),__('% comments','sunshine'),'comments-link ',__('Comments are off for this post','sunshine'));
?>
<?php if(!is_home()){ ?>
<span class="entrymeta-home">
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Both Comments and Pings are open ?>
<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Only Pings are Open ?>
<?php _e('Responses are currently closed, but you can','sunshine'); ?> <a href="<?php trackback_url(true); ?> " rel="trackback">trackback</a>, <?php _e('from your own site.','sunshine'); ?>
<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
// Comments are open, Pings are not ?>
<?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.','sunshine'); ?>
<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
// Neither Comments, nor Pings are open ?>
<?php _e('Both comments and pings are currently closed.','sunshine'); ?>
<?php }} ?>
<span class="entryedit"><?php edit_post_link(__('| Edit','sunshine'));?></span></span>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p>
<?php _e('Sorry, no posts matched your criteria.','sunshine'); ?>
</p>
<?php endif; ?>
<p>
<?php posts_nav_link(' — ', __('« Previous Page','sunshine'), __('Next Page »','sunshine')); ?>
</p>
</div>
<?php get_sidebar(); ?>
<!-- The main column ends -->
<?php get_footer(); ?>
Alles anzeigen
Natürlich kann ich Besucher der Seite quasi direkt auf Kategorie 1 leiten, aber falls man das in der index.php festlegen könnte, wäre das natürlich besser.