Einzelnen Beitrag anzeigen
Alt 23.06.2008, 10:38   #3 (permalink)
fangorn
PostRank: 1
 
Registriert seit: 14.07.2006
Beiträge: 34
Hier der Quelltext. Ich möchte auf der Startseite 4 einzelne Postings mit Hilfe von Kategorien in 4 einzelne Boxen einbauen.

<div class="box-startseite">
<a href="#" title=""><img src="<?php bloginfo('stylesheet_directory'); ?>/images/fotos/start/bild-01.jpg" alt="" /></a>
<?php
$posts = get_posts('category=4&numberposts=1');
foreach($posts as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt() ?>
<?php endforeach; ?>
<a class="pfeil" href="#" title="weiter"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/pfeil.gif" alt="weiter" /></a>
</div>
fangorn ist offline   Mit Zitat antworten