I'm currently trying to display a posts results page that is the result of a custom query for posts belonging to a particular category AND a particular tag.
PHP is not my strong suit, so this snippet added before the loop is the best I've been able to come up with:
<?php query_posts('tag=medical-doctor' . "&orderby=title&order=asc" . "&cat=9"); ?>
Concatenation probably isn't the way to go. Any ideas?
(THANK YOU.)