bhubbard
3/25/2015 - 6:45 PM

burn-injuries-list.php

<h3>Attornys who practice Burn Injuries</h3>
<?php
  $args = array(
    'tax_query' => array(
        array(
            'taxonomy' => 'wplawyer-practice-area',
            'field' => 'slug',
            'terms' => array( 'burn-injury' )
        ),
    ),
    'post_type' => 'wplawyer-attorney'
);
$loop = new WP_Query($args);
     if($loop->have_posts()) { while($loop->have_posts()) : $loop->the_post();
     
        //Output what you want
        echo '<li><a href="'.get_permalink().'">'.get_the_title().'</a></li>';
   
      endwhile;
}

wp_reset_query();
?>