Journal of Azerbaijan Archeology

‘your post type name’,
‘posts_per_page’ => 999,
‘order’ => ‘ASC’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘your taxonomy name’,
‘field’ => ‘id’,
‘terms’ => your category id
)
)
);

$tax_post_qry = new WP_Query($tax_post_args);

while($tax_post_qry->have_posts()) :
$tax_post_qry->the_post();
the_title();
endwhile;
?>