christianmagill
9/23/2016 - 1:34 AM

Use a WordPress Custom Post Type Archive for a Given Taxonomy

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;
});