Custom template for archive of a custom taxonomy
I think the best way to do it is to create a custom template page and get the list of terms (or whatever you need) on that template. template-activities-taxonomy.php <?php /* Template Name: Activities Taxonomy */ get_header(); ?> <? $terms = get_terms( ‘activities’ ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) … Read more