Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. query_posts('listing_category=musician');
  3. if (have_posts()) : while (have_posts()) : the_post();
  4. if( get_the_tag_list() ){
  5. echo $posttags = get_the_tag_list('
  6.  
  7. ','
  8. ','
  9. ');
  10. }
  11. endwhile; endif;
  12.  
  13. wp_reset_query();
  14. ?>