• Resolved Alex

    (@hempsworth)


    Is there any work being carried out on a tag-cloud feature for version 2.3?

    This version provides tag support, so I’m assuming a tag cloud would be possible, tags and clouds seem to go hand in hand nowadays!

    Perhaps when a user visits blogpath/tags/ they would see a cloud?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Amie

    (@sunburntkamel)

    IIRC, the plan is for tag clouds and other display features to be handled by Ultimate Tag Warrior, or something similar.

    then again, tag clouds have been added to wordpress.com, so who knows.

    And related posts by tags.
    And add tags though WLW.

    Digging around I found I could get a cloud using:
    <?php echo (wp_tag_cloud()); ?>
    Settings can be found in category-template.php

    I also got the tags for a post into my sidebar (where I include post meta) using:
    <?php echo (get_the_tag_list('Tagged as: ',', ','.')); ?>

    Now only if I could find the tag management system.

    Maybe they want to bring it out in the stable version?

    The echo() in the code snippet cweddel posted is redundant, as it gets echo()‘ed automatically. The following will suffice:

    <?php wp_tag_cloud() ?>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Tag Cloud: 2.3’ is closed to new replies.