Skip to content

Instantly share code, notes, and snippets.

@emaildano
Last active August 29, 2015 13:59
Show Gist options
  • Save emaildano/10678931 to your computer and use it in GitHub Desktop.
Save emaildano/10678931 to your computer and use it in GitHub Desktop.
Get tags as commas list
<?php
// post tags
$posttags = get_the_tags();
if ($posttags) {
$taglist = ""; ?>
<ul class="tags">
<div class="title">Tags</div>
<?php foreach($posttags as $tag) {
$taglist .= '<a href="'. get_tag_link($tag->term_id) .'">' . $tag->name . '</a>, ';
} echo rtrim($taglist, ", "); } ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment