swordfish, to display the tags in your posts like I do at https://coopblue.com/blog/, I did this:
In your theme’s post.php
, insert this line, <?php the_post_keytags(); ?>
below the existing line, <?php the_content(); ?>
.
To display tags in a section, you could create a new Page. Then, assuming that you have RunPHP installed, I imagine that you could insert this line of code into the Page:
<phpcode>
all_keywords('<a href="/blog/tag/%keylink%" style="font-size: %count%px">%keyword%</a>', '<a href="%keylink%" style="font-size: 12px ;font-variant: small-caps">%keyword%</a>', 10, 20)
</phpcode>
To put that “tag cloud” into your sidebar, like I did, you’d put the following code into your theme’s sidebar.php:
<h2>Keywords: </h2>
<ul><li><?php all_keywords('<a href="/blog/tag/%keylink%" style="font-size: %count%px">%keyword%</a>', '<a href="%keylink%" style="font-size: 12px ;font-variant: small-caps">%keyword%</a>', 10, 20) ?></li></ul>
I hope that helps!