如何在tumblr主题上显示标签?

时间:2017-10-10 14:38:51

标签: themes tumblr tumblr-themes

当您不点击帖子时,我的tumblr主题会在帖子中隐藏标签。有没有办法让标签一直出现?

this is when you don't click on the post

and this is when you do

我试过写

{block:HasTags}
    <ul class="tags">
        {block:Tags}<li><a href="{TagURL}">{Tag}</a></li>{/block:Tags}
    </ul>
{/block:HasTags}

在{block:Posts}内,甚至在它之后,但它不起作用。这是我主题的html代码的链接:pastebin.com/awQUSraA

1 个答案:

答案 0 :(得分:1)

似乎标签隐藏在索引页面上:

.tags {
    margin-top:5px;
    font-style:italic;
    {block:indexpage}display:none;{/block:indexpage}
}

删除{block:indexpage}display:none;{/block:indexpage},它们应该可见。