Hi,
Is there anyway to sort by taxonomy?
I have a taxonomy called priority, where the terms are 1, 2, 3. I need the posts to be sorted by term names.
Is that possible?
http://wordpress.org/extend/plugins/query-multiple-taxonomies/
Hi,
Is there anyway to sort by taxonomy?
I have a taxonomy called priority, where the terms are 1, 2, 3. I need the posts to be sorted by term names.
Is that possible?
http://wordpress.org/extend/plugins/query-multiple-taxonomies/
Totally, you can just append the query string however you want.
For instance, if you wanted to search by title, you would just add
<?php global $query_string; ?>
<?php query_posts( $query_string . '&orderby=title&order=ASC' ); ?>
before your loop.
You must log in to post.