为什么这样的事情不起作用? 我试图过滤今年的所有帖子
<div class="tiles">
{% for post in site.categories.articles %}
{% capture pubyear %} {{ post.date | date: "%Y" }} {% endcapture %}
{% if pubyear == "2014" %}
{% include post-grid.html %}
{% endif %}
{% endfor %}
</div><!-- /.tiles -->
答案 0 :(得分:1)
问题是它正在捕获带有一些空格的输出,所以它在if条件下失败,删除那些空格并且它应该工作
<div class="tiles">
{% for post in site.categories.articles %}
{% capture pubyear %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if pubyear == "2014" %}
{% include post-grid.html %}
{% endif %}
{% endfor %}
</div>
答案 1 :(得分:1)
捕获公共年份是vaild但你也可以指定pubyear没有空格。
{% assign pubyear = post.date | date: "%Y" %}