wp-blog-header.php, line 348 reads:
$orderby=’date ‘.$order;
I’m assuming you wish to order posts alphabetically by title, not by content?? Change the line to read:
$orderby=’title ‘.$order;
Similarly, you change “title” to “author” or “category” as well. But don’t forget the blank-space immediately afterwards. This is vital to the code.