List of tags in a tag group
-
I need a simple list of the tags that belong to a tag group
group A has tags: one, two, three
group B has tags: four, five, sixhow do i say, give me the tags in group A with PHP and it tell me
one, two, threeI have example code, that displays tags in a list
i know i need to somehow use
wp_tag_cloud()
but i am unsure how to use it to get the results in the same way the code below would hand me the tagsBasically i guess im asking how do i get an array of the tags in a tag group, by tag group name?
add_action( 'the_content', 'list_tags' ); function list_tags ( $content ) { if ( is_page('sample-page')) { $tags = get_tags(); $html = '<ul>'; foreach ( $tags as $tag ) { $html .= "<li>{$tag->name}</li>"; } $html .= '</ul>'; echo $html; } else { return $content; } }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘List of tags in a tag group’ is closed to new replies.