ok, da hab ich wohl zu umständlich gedacht. Hatte mein Codebeispiel ja angeführt.
Also es geht doch recht einfacher ( noch unformatiert ):
PHP
<?php
$posts = query_posts('posts_per_page=10');
if (have_posts()) : while (have_posts()) : the_post();
?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" ><?php the_title(); ?></a>
<?
the_post_thumbnail( );
endwhile; else: endif;
?>
Alles anzeigen
Danke!
Patrick