'areas', // Replace with your custom taxonomy name
'field' => 'texas',
'terms' => '45' // Replace with your term ID or slug
)
);
query_posts(array(
'post_type' => 'post', // Replace with your custom post type if different
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC',
'tax_query' => $tax_query
));
?>