My Posts Page pulls in all of the posts, which I have setup not to blog, but to post Artist Profiles.
Every time a new post is created it contains a title, an image & paragraph, a meta tag that contains the Bio, and a Tag that contains Artist's last name.
I am trying to pull in the Posts and have them appear alphabetically by Tag. Is this possible? Can someone point me in the right direction?
I tried using this code:
<?php if (have_posts()) : ?>
<?php $posts = query_posts( $query_string . '&orderby=tag&order=asc' ); ?>
<?php while (have_posts()) : the_post(); ?>
edit: thanks in advance!