I need to print a specific term with its id. I get that for categories with this code:
<a href="https://wordpress.stackexchange.com/questions/71089/<?php echo get_category_link(1); ?>" title="<?php echo get_cat_name(1);?>"><?php echo get_cat_name(1);?></a>
… where 1 is the id I have to print. Is there something like the following?
<?php echo get_term_link(1); ?>
or
<?php echo get_term_name(1); ?>