Ich habs gefunden!
für alle die evtl. daran interessiert sind; folgenden Codeabschnitt habe ich geändert:
PHP
<?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { // this is the default WordPress post thumbnail function
the_post_thumbnail(('featured-image'), array('class' => "alignleft"));
} ?>
ändern in:
PHP
<a href="<?php the_permalink() ?>">
<?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { // this is the default WordPress post thumbnail function
the_post_thumbnail(('featured-image'), array('class' => "alignleft"));
} ?>
</a>
:D