I found this in entry.php
Code:
query_posts($args);
}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Which I presume is the right place, I tried to add
Code:
query_posts(array(
'showposts' => 6,
'orderby' => 'rand',
'category_name' => 'news' //You can insert any category name
));
}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
But it didn't make any differece.