Somebody changed the post title. Hehe, that amuses me. 🙂
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.
(I’m obviously new to the forums and know absolutely nothing about forum post formatting yet. Sorry. I just wanted to share what I managed to make work. ^_- )