gpt4 book ai didi

Jekyll & Liquid : Output category list with post count?

转载 作者:行者123 更新时间:2023-12-03 21:08:57 25 4
gpt4 key购买 nike

我不知何故卡住了,没有找到正确的方法来做到这一点。

我想输出一个类别列表,其中包含每个类别中的帖子数。

我走到这一步了:https://paste.xinu.at/dOLtod/

但我从来没有设法得到真正的计数。我尝试了很多方法,但没有任何效果,例如浏览每个帖子并检查每个类别是否等于 {{ category |第一的 }}。

这是没有计数的代码:

<ul class="dropdown-menu">
{% for category in site.categories %}
<li class="camelize_me">
<a href="/tags/{{category | first}}/">
{{category | first }}
<span class="badge">
<!-- Post count here -->
</span>
</a>
</li>
{% endfor %}
</ul>

有没有人有完成这件事的想法?

最佳答案

我写了一个代码片段,它不仅显示每个类别中的帖子计数,而且还导航到被点击的特定类别的帖子。我希望你觉得这对你有帮助:

<ul class="tag-box inline">
{% assign tags_list = site.categories %}
{% if tags_list.first[0] == null %}
{% for tag in tags_list %}
<li><a href="#{{ tag }}">{{ tag | capitalize }} <span>{{ site.tags[tag].size }}</span></a></li>
{% endfor %}
{% else %}
{% for tag in tags_list %}
<li><a href="#{{ tag[0] }}">{{ tag[0] | capitalize }} <span>{{ tag[1].size }}</span></a></li>
{% endfor %}
{% endif %}
{% assign tags_list = nil %}
</ul>

{% for tag in site.categories %}
<h2 id="{{ tag[0] }}">{{ tag[0] | capitalize }}</h2>
<ul class="post-list">
{% assign pages_list = tag[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></a></li>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
</ul>
{% endfor %}

关于Jekyll & Liquid : Output category list with post count?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20945944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com