Это то, что я использую, добавьте его на index.php
<?php
$posts = query_posts($query_string . '&orderby=title&order=asc');
?>
В вашем случае вам также может понадобиться поставить условие is_home ()
<?php
if(is_home()){
global $query_string;
query_posts($query_string . '&orderby=title&order=asc');
}
?>
Надеюсьэто помогает:)