Thank you! That got me about 80% there. For the Categories I added the code that page recommended for their “Glossary” example, inserting their code into category.php, but I deleted the reference to Glossary, like so:
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
if (is_category(''))
{
$posts = query_posts($query_string .
'&orderby=title&order=asc&posts_per_page=-1');
}
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>
Next, I needed this to work for my Tags, so I inserted the same code into tag.php, but changed the first line to if (is_tag(''))
Works great! Thank you!