I’ve added Technorati tags
Wordpress itself was a great help for this. It allows metadata to be added really easily, and consistently, in key/value pairs. And it allows each key to have multiple values.
So have a key called “Tag” and at the end of each entry I’ve added this (in index.php and single.php):
<?php
$tags = get_post_custom_values(’Tag’);
[...]