0
我參考了How to customize the sorting of items on a page with jekyll上的鏈接。雖然這個想法與我需要的非常相似,但這個設置對我來說並不適合。在Jekyll中按類別自定義排序類別和羣組文章
場景:
我的職位名單,每個只有一個類別,如category A
,category B
,category C
,等等。我需要他們的訂單是category B
,category A
,category C
。
當前設置
的loop.html
目前MWE如下:
{% for category in site.categories %}
<h3>{{ category[0] | capitalize }}</h3>
{% for post in category[1] %}
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
{{ post.excerpt }}
{% endfor %}
{% endfor %}
這只是排序依據的發佈日期,我相信。我可以做字母排序,但不能得到它B
,A
,C
。
我的所有帖子都有類別,每個類別只有一個類別。
當我在上述鏈接中的帖子中顯示的步驟時,循環顯示爲空白。
謝謝,讓我試試看!我不知道我們可以做一個'site.categories.categoryB' ... –