Skip to content

Instantly share code, notes, and snippets.

@mikedamage
Created January 30, 2013 18:46
Show Gist options
  • Save mikedamage/4675627 to your computer and use it in GitHub Desktop.
Save mikedamage/4675627 to your computer and use it in GitHub Desktop.
<p>
<?php
$tags = get_author_tags(get_the_author_meta('ID'));
$links = array();
foreach ($tags as $id => $tag) {
$url = get_tag_link($tag->term_id);
$links[] = "<a href=\"{$url}\">{$tag->name}</a>";
}
?>
My Topics: <?php echo implode(', ', $links); ?>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment