I would like my blog to display each post sorted alphabetically by title and not by date.
I will probably not be displaying the date at all.
Is there a way to do this?
I would like my blog to display each post sorted alphabetically by title and not by date.
I will probably not be displaying the date at all.
Is there a way to do this?
I found this solution which works great:
http://codex.wordpress.org/Alphabetizing_Posts
The only modification I would like beyond the above solution is to sort it by REVERSE alphabetical order.
Any ideas?
Thanks
Rowby
In the code you've found there is this line:
&orderby=title&order=asc&posts_per_page...
Change the order (asc ==> desc)
Another option is to add these two lines to your blog's root index.php, or alternatively the wp-blog-header.php file (somewhere near the top):
$orderby='title';
$order='ASC';
This will affect everything.
This topic has been closed to new replies.