Hello everybody.
I want to know if is there a way to show posts in a specific order but only for one category?
something like:
'<?php
if('SELECTED-CATEGORY'){
query_posts($query_string);
if (have_posts()) : while (have_posts()) : the_post();
}else{
$posts=query_posts($query_string . ‘orderby=rand’);
if (have_posts()) : while (have_posts()) : the_post();
}
?>'
where the SELECTED-CATEGORY could be the "Home Page" or a "category"
-I apologize for my bad english-