Related Articles
query_posts(array(
'showposts' => 5,
'orderby' => 'rand',
'post__not_in' => array($this_post),
'category_name' => 'Blog' //You can insert any category name
));
if (have_posts()) : while (have_posts()) : the_post();
?>
endwhile; endif;
?>