Hallo,
ich füge Kategorien so ein:
<div id="cats">
<?php query_posts('cat=14&showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php the_excerpt('(more...)'); ?>
<?php endwhile;?>
</div>
Wie aber bekomme ich das dazugehörige Bild mit rein ?