如何在 jekyll 中列出页面类别和相应的 post 计数
How to list page categories and corresponding post count in jekyll
在我的 jekyll 站点中,我在 post 中有 3 个类别。我想显示每个类别的徽章及其 post 数量。我用了
{% for category in page.categories %}
{% unless category == 'index'%}
<a href="/cat/{{category}}">{{category}}{{category.size}}</a>
{% endunless %}
{% endfor %}
在 post 布局中。
这有效,但 post count 显示错误的数字。我也试过没有 unless
语句但没有用。
{{category.size}}
统计当前分类名称的字母个数
如果你想要这个 category
中的帖子数,正确的语法是:
{{ site.categories[category].size }}
在我的 jekyll 站点中,我在 post 中有 3 个类别。我想显示每个类别的徽章及其 post 数量。我用了
{% for category in page.categories %}
{% unless category == 'index'%}
<a href="/cat/{{category}}">{{category}}{{category.size}}</a>
{% endunless %}
{% endfor %}
在 post 布局中。
这有效,但 post count 显示错误的数字。我也试过没有 unless
语句但没有用。
{{category.size}}
统计当前分类名称的字母个数
如果你想要这个 category
中的帖子数,正确的语法是:
{{ site.categories[category].size }}