This is a feature request, is there anyway of incorporating active linking to taxonomy links? I am using the following code and could do with some tips on how to get active linking to show. Im not sure how to achieve this :)
<?php $args = array('taxonomy' => 'startersections'); ?>
<?php $tax_menu_items = get_categories( $args );
foreach ( $tax_menu_items as $tax_menu_item ):?>
<li id="<?php echo $tax_menu_item->slug;?>" class="page">
<?php do_action('taxonomy_image_plugin_print_image_html', 'fullsize'); ?>
<div class="textwrap">
<h3><a href="<?php echo get_term_link($tax_menu_item, $tax_menu_item->taxonomy); ?>">
<?php echo $tax_menu_item->name; ?>
</a></h3>
<p> <?php echo $tax_menu_item->description; ?></p>
</div>
</li>
<?php endforeach; ?>