Tumblr Themes – How to Make Tags Visible

tumblrtumblr-themes

I have just created a Tumblr blog using the Fluid theme. After creating a new post, I added a few tags, but then I noticed that the tags do not show up along with the post.

I tried searching for an option to make the tags visible, but I could not find it. As it was pointed out, apparently not all themes display the tags.

How do I make the tags visible if using the Fluid theme? What changes do I have to make to its HTML?

Best Answer

  1. Go to the Customize section after you log in
  2. Click on the Theme tab
  3. Click Use custom HTML

This will bring up a edit box that contains the HTML and tumblr code used by the theme.

Put the code for the tags somewhere between the opening {block:Posts} and closing {/block:Posts} tags.

To start off easy, let's put the tags at the bottom of all your post types.

Where you see the following line:

{/block:Posts}

Insert the following starting chunk to look like this:

    {block:HasTags}
       {block:Tags}
          <a href="{TagURL}">{Tag}</a>
       {/block:Tags}
    {/block:HasTags}

{/block:Posts}
  1. Click Update preview in the lower right corner of the edit box (or it will update itself)
  2. Click Save + Close in the upper right of the dashboard.

Refresh your tumblr blog and you should now see the tags display.

You can read more of the specific tags markup needed on the Tags section of "Creating a custom HTML theme"