解决hexo更新时间问题
发布于
修改post文件
---title: {{ title }}
pubDateTime: {{ pubDateTime }}
updated: {{ pubDateTime }}
tags:
---
这样每次新建文章后,会自动添加 updated
标签,并且与 pubDateTime
的创建时间一致。
如果是历史文章,则需要手动给每篇文章增加这个更新时间,或者自己写个脚本批量处理下。
---title: {{ title }}
pubDateTime: {{ pubDateTime }}
updated: {{ pubDateTime }}
tags:
---
这样每次新建文章后,会自动添加 updated
标签,并且与 pubDateTime
的创建时间一致。
如果是历史文章,则需要手动给每篇文章增加这个更新时间,或者自己写个脚本批量处理下。