Logré hacerlo sin plugins, la diferencia es que éste no tiene imágenes en miniatura, pero te recomienda los posts de la misma categoría, pongo el código a continuación el cual va completo tal cual en el archivo single.php....
Código PHP:
Ver original<?php
$categories = get_the_category($post->ID);
if ($categories) {
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
'category__in' => $category_ids,
'post__not_in' => array($post->ID), 'showposts'=>10,
'caller_get_posts'=>1
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo '<h3>Artículos Relacionados:</h3><ul>';
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php
}
echo '</ul>';
}
}
?>
Espero que te sirva! suerte