how do i get a list of all my tags?
i tried wp_tag_cloud(); but this wants to wrap the output in html (links or lists), i want a dry list with no formatting.
how do i get a list of all my tags?
i tried wp_tag_cloud(); but this wants to wrap the output in html (links or lists), i want a dry list with no formatting.
$tags = get_tags();
if ($tags) {
foreach ($tags as $tag) {
echo '<p>Tag: <a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </p> ';
}
}thanks, perfect.
This topic has been closed to new replies.