Forums

[resolved] Tags instead of Categories? (3 posts)

  1. blargh
    Member
    Posted 2 years ago #

    Hey!

    Opened up my new site, WordPress is great. For better navigation purposes, would it be possible to display the "Tags" instead of the "Categories" at the bottom of each post?

    I looked into the SinglePost.php under my theme editor, and it has

    <div class="spostinfo">
    					<div class="category"><?php the_category(', '); ?> </div>
    
    </div>
    
    </div>

    Not sure if that's what I need to work on, but I suppose it's a start.

    Any help is appreciated greatly,
    Thanks!

  2. Oren Yomtov
    Member
    Posted 2 years ago #

    you can change it to

    <div class="spostinfo">
    					<div class="category"><?php the_tags('',', ',''); ?> </div>
    
    </div>
    
    </div>
  3. blargh
    Member
    Posted 2 years ago #

    I love you :)

Topic Closed

This topic has been closed to new replies.

About this Topic