So sieht das Einfügen des Contents im Moment auf meiner Startseite aus
<?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_attribute(); ?>"><?php the_title(); ?></a></h2>
<!-- von <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Den ganzen Beitrag lesen »'); ?>
</div>
Kann ich dem auch sagen, er soll zum beispiel 2 Postings (also immer die aktuellesten 2) aus der Kategorie XY anzeigen (und sonst nix) ? Wenn ja wie ?