wordpress tags - can't get them to show up at all!

Discussion in 'WordPress' started by Pixelrage, Feb 2, 2008.

  1. #1
    I've been using the old Wordpress + Ultimate Tag Warrior and just upgraded, and had to get rid of UTW. I know that Wordpress now has built in tags, but they are not working whatsoever....

    To show tags on a live page, I used:

    <?php the_tags(‘before’, ’separator’, ‘after’); ?>
    Code (markup):
    ...as seen on a tutorial I found...and for the tag cloud:

    <?php wp_tag_cloud('smallest=9&largest=22&number=30&orderby=count'); ?>
    Code (markup):
    When I save and view the page, it just doesn't show anything at all. I don't get it. I've been googling tutorials for this and they all say the same thing. What's happening?! All of the tags are correctly set on the posts...
     
    Pixelrage, Feb 2, 2008 IP
  2. niessuh

    niessuh Well-Known Member

    Messages:
    861
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    128
    #2
    you must use the latest wordpress. it must be 2.3+
    and your theme must be capable of tags.
     
    niessuh, Feb 2, 2008 IP
  3. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks, but the theme has to be capable of tags? Shouldn't it work no matter what, since it's part of the Wordpress hard coding?
     
    Pixelrage, Feb 3, 2008 IP
  4. robojiannis

    robojiannis Peon

    Messages:
    45
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Try out the Configurable Tag Cloud. It is very good, simple and easily customizable as a widget. If you combine it with the Simple Tags plugin, you then are the Ultimate Tag Warrior ;)
     
    robojiannis, Feb 4, 2008 IP
    Pixelrage likes this.
  5. asbestos

    asbestos Active Member

    Messages:
    329
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #5
    Nice one! Can be useful sometimes. And nope some skins may not have clouds by itself.
     
    asbestos, Feb 4, 2008 IP
  6. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #6
    robo, thanks for those great suggestions!!
     
    Pixelrage, Feb 4, 2008 IP
  7. robojiannis

    robojiannis Peon

    Messages:
    45
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    avec plaisir ;)
     
    robojiannis, Feb 5, 2008 IP
  8. digital1

    digital1 Well-Known Member

    Messages:
    517
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    125
    #8
    This is the code I use to display tags on my WordPress themes:

    <?php if ( function_exists('wp_tag_cloud') ) : ?>
    <p>
    <?php the_tags(); ?>
    </p>
    <?php endif; ?>
    Code (markup):
    It doesn't require any plugins and will work on any WordPress blog - provided you're using WP v2.3 and above, that is.
     
    digital1, Feb 5, 2008 IP