Habe eine Lösung gefunden. Der unten stehende Code muss in die Seite category.php und dort vor
Zitat<?php the_excerpt();?>
ZitatAlles anzeigen
<?php
$images = get_children(
array(
'post_parent' => $post->ID,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order'
)
);if ( $images ) {
$count = 1;
foreach ( $images as $id => $image ) {
if( $count === 1 ) {
$img = wp_get_attachment_thumb_url( $image->ID );
$link = get_permalink( $post->ID );
print "\n\n" . '<div style="float:left;margin:0 10px 10px 0;"><a href="' . $link . '"><img src="' . $img . '" alt="" /></a></div>';
}
$count++;
}
}
?>