Languages: English • the taxonomies 日本語 (Add your language)
This function can be used within the loop. It will also return an array of the taxonomies with links to the taxonomy and name.
<?php get_the_taxonomies( $post, $args ); ?>
$args = array( 'template' => __( '%s: %l.' ), 'term_template' => '<a href="%1$s">%2$s</a>', );
Array ( [taxonomy_slug] => Taxonomy Name: <a href='http://yourdomain.com/Term_Slug/'>Term Name</a>. )
the_taxonomies() is located in wp-includes/taxonomy.php
.