Sorting Main Listing Alphabetically
-
I’m seeking to use WordPress for a non-traditional purpose (that is, not a blog), and I need to list the material on the front page alphabetically. Now, it’s no problem to change the code to do this within WordPress, but next time that I upgrade, it’ll just revert to the date-sorting behavior.
Can anybody tell me the <i>proper</i> way to do this, presumably just by changing index.php? I tried changing:
wp_get_archives('type=monthly&format=link')
to:
wp_get_archives('type=monthly&format=link&orderby=title')
but that didn’t do any good. I tried, also, setting $orderby=’title’ and making $orderby global, but again with the not so good. Any tips?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Sorting Main Listing Alphabetically’ is closed to new replies.