dsm
By: a guest | Aug 29th, 2008 | Syntax:
PHP | Size: 0.37 KB | Hits: 191 | Expires: Never
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo '<a href="/a/tag/' . $tag->name . '/" rel="tag">' . $tag->name . '</a><a href=http://technorati.com/tags/' . $tag->name . ' target="_blank" title="Visit this tags page on Technorati.com"><img src="/images/technorati.png" style="border:0px solid white;vertical-align:middle;"></a> ';
}
}
?>