I am wanting my category page to do nothing but list the titles in alphabetical order. Anyone know how this is possible?
Your category page should look something like this. You'll need to change it to display correctly for your theme. <?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_title(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> </div> <?php get_footer(); ?> Code (markup):