super, danke!
wo wir gerade beim Thema sind. Ich wollte mit diesem Skrip die posts in meiner Seite einbinden:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<small><?php the_time('F jS, Y') ?></small>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
Das geht in der Index auch ganz gut, jetzt weiß ich nur nicht wie ich steuern kann das er mir die Post von einer bestimmt Kategorie anzeigt? Da gibt es doch bestimmt eine ganz einfache Zeile die ich darüber schreiben muss?
thx,
Robert