【发布时间】:2017-07-28 03:43:55
【问题描述】:
我是 Jekyll 的新手。我知道 Jekyll 支持使用以下代码显示最近的帖子:
<div id="recent-posts" class="recent-posts">
{% for this_post in paginator.posts %}
<div class="post">
<a href="{{ this_post.url }}">
<h2 class="post-title">{{ this_post.title }}</h2>
</a>
{% include category_info %}
{% include source_info %}
</div>
{% endfor %}
</div>
但我不想显示帖子类别,说类别名称是"notshowing"。我怎样才能做到?
【问题讨论】: