显示当前帖子的分类标准术语(Drupal)

I have many snippets to show all taxonomy terms. However, I want to be able to list all taxonomy terms for the current post that you're readying (with links behind them to see more posts tagged with that same term).

Any ideas?

Most drupal stock templates show the nodes terms in the node display by default, if you're not seeing them perhaps your template doesn't expose them in your node.tpl.php like so:

<?php if ($taxonomy): ?>  
 <div class="terms"><?php print $terms ?></div>  
<?php endif;?>  

OR...

You may be using views with field display/row style and need to add the taxonomy terms as a field