Here’s a little tidbit I can NEVER find when I need it: If you need to get all the tags that belong to a current post, here’s the function: $tags = get_the_tags($post_id); This will return an associative array of tags, with all their relevant info. BONUS If you need the same thing with categories, here’s your function:
[...]
