Skip to content

Instantly share code, notes, and snippets.

@iledcom
Created August 1, 2015 13:00
Show Gist options
  • Save iledcom/bb1784afe4447c45b3cc to your computer and use it in GitHub Desktop.
Save iledcom/bb1784afe4447c45b3cc to your computer and use it in GitHub Desktop.
WordPress get tags
?php
$tags = wp_get_post_tags($post->ID);
if ($tags){
foreach ($tags as $tag) {
echo '' . $tag->name;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment