Use a WordPress Custom Post Type Archive for a Given Taxonomy
add_filter('template_include', function(){ if(is_tax('taxonomy-name')) $template = get_query_template('archive-post-type'); return $template; });