Skip to content

Instantly share code, notes, and snippets.

@mahfuzul
Last active January 4, 2016 10:52
Show Gist options
  • Save mahfuzul/3b3a7ebf58b38cfaf40b to your computer and use it in GitHub Desktop.
Save mahfuzul/3b3a7ebf58b38cfaf40b to your computer and use it in GitHub Desktop.
print-wp-tags
<?php
// Print WordPress Post Tags Comma Seperated
$post_tags = get_the_tags();
if ($post_tags) {
$last = end($post_tags);
foreach($post_tags as $tag) {
echo '<a href="'. get_tag_link($tag->term_id).'" class="">' . $tag->name . '</a>';
if($tag != $last) { echo ", "; }
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment