Change order of posts in WordPress
Today I needed to change the order of posts in a WordPress blog, from the default (desc by date) to asc by date. To accomplish this, one needs to open the file wp-includes/query.php. Line 1116 must be changed from:
$q['order'] = 'DESC';
to:
$q['order'] = 'ASC';
That should do it.