Kent iemand een plugin waarmee het mogelijk is om posts in een widget te weergeven van artikelen in dezelfde categorie? Dus artikel A in categorie A, links worden posts weergeven uit categorie A met thumbnail, artikel B in categorie B, links worden posts weergeven uit categorie B.

Hiervoor gebruikte ik voorheen het volgende PHP script:
<div id="front-list2">
<?php global $post;
$categories = get_the_category();
$cat_array = array();
foreach ($categories as $category) {
$cat_array[] = $category->cat_ID;
}
$cat_list = implode(',', $cat_array);
?>
<ul>
<?php
$posts = get_posts('numberposts=10&category='. $cat_list);
foreach($posts as $post) :
setup_postdata($post);
?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanente link naar <?php the_title(); ?>">

<?php get_the_image('image_class=smallthumb'); ?>
</a>

<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b><br />
<?php content('25'); ?>
<?php endforeach; ?>

</ul>
</div>
Dit werkt bijvoorbeeld prima op geld-en-leningen.nl, op allesoverbeleggen.com werkt dit script echter niet en worden de thumbnails te groot weergeven.