I am wanting random posts from one category only
Looking to put this code in
Code:
query_posts(array(
'showposts' => 6,
'orderby' => 'rand',
'category_name' => 'News' //You can insert any category name
));
if (have_posts()) : while (have_posts()) : the_post();
or something similar.
Really I just want to randomise the posts from one category. I would use a pplugin but I can't find one, they all seem to be widgets.