Share Pastebin
Guest
Public paste!

dsm

By: a guest | Aug 29th, 2008 | Syntax: PHP | Size: 0.37 KB | Hits: 191 | Expires: Never
Copy text to clipboard
  1. <?php
  2. $posttags = get_the_tags();
  3. if ($posttags) {
  4. foreach($posttags as $tag) {
  5. 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> ';
  6. }
  7. }
  8. ?>