什么是b:如果?如果它是主页,如何使其返回true?

时间:2011-01-18 07:05:40

标签: xml blogger

我遇到了b:如果Blogger中的参数,我不确定如何使用它。 如果它是首页,我需要使条件返回true。我该怎么做?

由于

1 个答案:

答案 0 :(得分:0)

<b:if>是一个所谓的小部件标记。请参阅Blogger帮助页面中的complete list of widget tags。对于条件的值,您可以使用layout data tags

对于首页的检测,至少有两种可能性:

<b:if cond='data:blog.pageName == ""'>
  <!-- Place markup for the front page and archives here -->
<b:else/>
  <!-- Place markup for posts here -->
</b:if>

替代:

<b:if cond='data:blog.pageType == "item"'>
  <!-- Place markup for the posts here -->
<b:else/>
  <!-- Place markup for front page and archive here -->
</b:if>

查看搜索引擎优化的example to customize the page title