Wordpress: How to Alphabetize posts
I looked for this forever before I happened to stumble across it. It is a cool little tutorial on how to alphabetize posts:
http://codex.wordpress.org/Alphabetizing_Posts
Here’s something else I learned about wordpress: all parts of the query to the database are named to a function. So, if you’re struggling to do something, like show ONLY the category name at the top of all category pages, you need to know that the function of the category pages is: single_cat_title().
The other handy thing to know is that the naming schemes for the functions are not consistant, so you’ll probably need to search through the docs. It ain’t something you can just figure out.