I'm trying to find a simple way of finding tag IDs. I'm not a programmer and I don't want to have to query the database to do this. Is there a simple location than I can visually look to find a list of Tag IDs?
Thanks a lot.
I'm trying to find a simple way of finding tag IDs. I'm not a programmer and I don't want to have to query the database to do this. Is there a simple location than I can visually look to find a list of Tag IDs?
Thanks a lot.
I found a roundabout way to do it for non-programmers. If you set up a tag cloud, the source code will indicate the ID numbers of each item in the cloud in the class name, such as "class='tag-link-27'."
get_the_tags() can also be used to display the term_id of a tag:
http://codex.wordpress.org/Template_Tags/get_the_tags
If you follow the example code on the page, this:
$tag->term_id
holds the ID for a tag.
This topic has been closed to new replies.