I've searched and read a number of messages here relating to post order, and have successfully been able to change to chronological order of my blog's posts on a global basis by doing this to the index.php file:
<?php
/* Short and sweet */
$order = "ASC";
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>
---
However, I would like to find out if this can be done for a SINGLE category -- say it's called "Max" What is the code I would need to accomplish this? And where would I place the code. I have attemted an "if" statement bfore the order line, but my skills in this area did not result in success. I'd appreciate any guidance -- the more explicit the better.
Thanks.