interfx
Member
Posted 4 months ago #
I'm a new user to WordRPress 3.3, and have a number of posts in my categories, but want to order the posts alphabetically by the post title, vs. the date it was created?
Is this possible? and if so can I change the default setting by category? (ie. one category by date, one category by title, ...)
Thanks in advance -
It will depends on what you exactly want to do. Here is a starting point:
query_posts(array( 'orderby' => 'title', 'order' => 'ASC' ) );
Helpful documentation can be found in the codex:
The Loop
query_posts
WP_Query
There are also plugins that will do this if you don't want to write code.
http://wordpress.org/extend/plugins/search.php?q=post+order