I have set up a custom taxonomy with Custom Post Type UI.
I want to display that taxonomy on single posts, with a link to the archive page for that term. I use this code:
<?php the_terms( $post->ID, 'taxonomyname' ); ?>
The link I get is: wordpress/?taxonomy=taxonomyname&term=taxonomyterm
That link doesn't work. I have pretty permalinks, multisite, and the correct link for that archive is: wordpress/blog/taxonomyname/taxonomyterm/.
I have tried different combinations in Custom Post Types UI for Rewrite and Rewrite Slug, to no effect.
What could I do? Thanks.