I would like to have an archive page display ALL posts sorted alphabetically. I've read these:
http://codex.wordpress.org/Alphabetizing_Posts
http://wordpress.org/support/topic/22801
but they deal with category and index pages, templates that have the loop.
Here's the code of my archive template:
<?php
/*
Template Name: Artists A-Z
*/
?>
<?php get_header(); ?>
<h1>Artists A-Z</h1>
<div class="storycontent">
<ul>
<?php
wp_get_archives('type=postbypost&sort=post_title&order=ASC');
?>
</ul>
</div></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I got the wp_get_archives code from here in the Forum. Curiously, the TYPE and SORT parameters aren't listed in the Codex for this function:
http://codex.wordpress.org/Template_Tags/wp_get_archives
How can I achieve an alphabetized archive page that lists all posts?
THX!
JF ;)