Is it possible to list the selection of multiple taxonomies in the title of the archive.php? I'm using this at the moment:
<h2>You selected:
<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); echo $term->name; ?>
</h2>
But this only shows the last taxonomy selected. I want to show the complete list of selected taxonomies. Is it possible? And if so, please help me.
Thanks, john.