I was looking at the Codex for sorting post by title.
So I've added the following lines to the theme index.php
And added category_ID to below. But I seem to be missing something?
Tia,
David Jackson
<?php get_header(); ?>
<?php
// we add this, to show *all* posts sorted
// alphabetically by title
$posts = query_posts($query_string . '&orderby=category_ID&order=asc&posts_per_page=-1');
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>