2017-08-18 100 views
1

我正在使用hexo創建博客。每次我通過修改時間更改其中一個帖子的內容時,帖子都會重新排序。它困擾我,因爲我只想按創建時間排列的所有帖子。任何提示都會受到歡迎。如何在創建時間的情況下完成hexo訂單

+0

你將不得不在文檔中尋找到這個順序按功能。 https://hexo.io/docs/helpers.html#list_categories 就像這樣,顯然長度不是正確的列。 <% - list_categories({orderby:'length',order:'desc'})%> – DoomVroom

回答

1

我面臨與你一樣的問題。無論何時您更新,創建日期都會以hexo進行更新。

但是,如果您在文章描述中設置date標記,那麼hexo會保留它。

下面是一個例子:

--- 
title: Some title 
tags: 
- some tag 
- some tag 
- some tag 
categories: 
- some category 
date: 2017-08-21 21:30:00 
--- 
+0

它的工作原理。謝謝 – egbert

相關問題