Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Last active December 21, 2015 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrdesigner/6244364 to your computer and use it in GitHub Desktop.
Save chrdesigner/6244364 to your computer and use it in GitHub Desktop.
Listagem de tags com o título e o link para Wordpress
<ul>
<?php $tags = get_the_tags(); foreach ( (array) $tags as $tag ) { echo '<li><a href="' . get_tag_link($tag->term_id) . '" title="' . $tag->name . '">' . $tag->name . '</a></li>';}?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment