List of posts from a tag
-
I am trying to find a way to create a list (not cloud) of tags and to have second level lists of links to all the posts related to each tag — essentially the same list that would result if you had clicked on the tag-link.
So, say I had two tags, “cake” and “candy” and there were several recipes tagged with those links, this is the result I am looking for:
- cake
- candy
So I start with this:
<?php
if(get_the_tag_list()) {
get_the_tag_list(‘- ‘,’
- ‘,’
‘);
}
?>and I get the list of tags. But how do I get the sublist of related posts? Probably this has been answered already, but I can’t seem to locate it.
thanks for looking
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘List of posts from a tag’ is closed to new replies.