Blogger 条件标签在帖子正文中不起作用

问题描述 投票:0回答:1

在我的博客模板中,我使用博客条件标签尝试了一件事。如果帖子有/包含标签/标签名称

media-div
,我尝试显示名为
media
的 div。但它不起作用。为什么?

这是我的方法。我尝试了两种方法,但都不起作用。

<b:if cond='data:blog.pageType == "item" and data:post.labels any (label => label.name == "Media")'>
    <!-- Content to show if the post has a label named "Media" -->
    <div class="media-div">
        This will show if the post has a label named "Media".
    </div>
</b:if>

还有第二种方法。

<b:if cond='data:blog.pageType == "item"'>
    <b:loop values='data:post.labels' var='label'>
        <b:if cond='label.name == "Media"'>
            <div class="media-div">
                This will show if the post has a label named "Media".
            </div>
        </b:if>
    </b:loop>
</b:if>

Blogger 条件标签不起作用。

html xml blogger
1个回答
0
投票

试试这个:

<b:if cond='data:blog.searchLabel == "abc"'>
<!-- for label 'abc' -->
</b:if>

来源:https://www.devilhunter.net/2024/09/conditional-tags-for-blogspot.html

© www.soinside.com 2019 - 2024. All rights reserved.