PDA

View Full Version : How do I show post tags in Wordpress?



cbsalliance
06-10-2020, 07:01 PM
Good morning!

I am starting a blog and am using post tags. I am using WP 3.0 and I have no problem creating the tags when I write post.

My question is: How do I get the tags to show on the page with each post? Do I need a plugin to do this?

Any help would be appreciated!

Lewis-H
06-11-2020, 04:29 PM
If you want to display a list of tags associated with a specific post then you instead use the function called get_the_tag_list. Example: echo get_the_tag_list('<p>Tags: ',', ','</p>'); Also, the first snippet uses the get_tags function which is specifically for WordPress tags.