I have created a custom Taxonomy called downloads_categories which works like categories and has a list of Models;
The taxonomy is linked to a custom post type called downloads the post type contains 2 elements/fields (the_title) and (the_field('file')).
In my template taxonomy-downloads_categories.php how do I echo all the posts which are associated to the current taxonomy term? I currently use the following code and it only echo's the 1st available download.
<a href src="<?php the_field('file'); ?>" alt="" /><?php the_title(); ?></a>
