JiveDig
11/25/2013 - 6:51 PM

Show list of terms from a custom taxonomy linked to their archive pages

Show list of terms from a custom taxonomy linked to their archive pages

<?php

add_action( 'genesis_before_loop', 'spears_do_resource_term_links' );
function spears_do_resource_term_links() {

	// Show Custom Taxonomy
	$args = array( 'taxonomy' => 'resource_type' );

	$terms = get_terms('resource_type', $args);

	echo '<div class="resource-types">';
	    echo '<ul>Sort by Type: ';

		    foreach ($terms as $term) {
				echo '<li><span class="comma">, </span><a href="' . get_term_link( $term ) . '" title="' . $term->name . '">' . $term->name . '</a></li>';
			}

		echo '</ul>';
	echo '</div>';

}