• Resolved jimdrake

    (@jimdrake)


    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • $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> ';
    }
    }
    Thread Starter jimdrake

    (@jimdrake)

    thanks, perfect.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘list all tags’ is closed to new replies.