Yo probaría con algo asi en category.php:
Código:
<ul>
<?php $lacat = get_query_var('cat');
$args=array(
'showposts'=>30,
'paged'=>$paged,
'cat'=>$lacat,
'orderby'=>'title' // Le pones lo que quieras
);
query_posts($args);
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; endif ?>
</ul>
<?php else: endif; ?>
Fijate acá los parametros de order y orderby
http://codex.wordpress.org/Function_...ce/query_posts
Para el sitemap tenés plugins!