I have figured out that by adding following line before the loop: <?php get_header(); query_posts($query_string . "&order=ASC"); ?> Code (markup): category posts get displayed in reverse chronological order. I was trying to figure out how to make only posts in ONE (select) category display in reverse chronological order and have the rest from last to first, but that's beyond my skill. I tried searching for answers big time but wasn't able to find the solution. Does somebody know what to do so only one chose category is displayed in reverse order and all other are unaffected?
can you find any plugin here http://wordpress.org/extend/plugins/tags/category http://wordpress.org/extend/plugins/tags/categories
Does this really work? I've been looking to do this for a long time... a few programmers told me it couldn't be done
I found out the answer to this: <?php get_header(); if (is_category('4') ) { query_posts($query_string . '&order=ASC'); } ?> Code (markup): Above example of course assumes it's Category #4 you want in ascending order.