Shopify显示如果Blog.Handle是X用于博客列表

时间:2012-12-27 18:50:13

标签: blogs shopify

我正在尝试编辑blog.liquid,以便在特定的博客列表中,上面有一个自定义图形。

类似的东西:

<div id="page-header">
    <h2 id="page-title">{{ blog.title }}</h2>
</div>
{% if blog.new-years-revolution %}
<p class="alignCenter">**[custom code here]**
</p>
{% endif %}

{% for article in blog.articles  %}

<h3 class="blog">
<a href="{{article.url}}">{{ article.title | escape }}</a></h3>

    {% if article.excerpt.size > 0 %}
        {{ article.excerpt }}
    {% else %}
        <p>{{ article.content | strip_html | truncate: 800 }}</p>
    {% endif %}


{% endfor %}

基本上我不希望它出现在任何其他博客上,只是这个特定的博客。所以一个基本的if声明说“如果在这个博客上,请显示这个”。我不确定是使用blog.id还是blog.handle,并根据哪一个,如何引用该特定句柄,以便此图像仅显示在该图像上。

希望我能够解释清楚。谷歌搜索了一段时间,但还没有发现任何有用的东西。

1 个答案:

答案 0 :(得分:1)

应该是:

{% if blog.handle == 'new-years-revolution' %}
<p class="alignCenter">**[custom code here]**</p>
{% endif %}