近期在写 3-hexo 主题时,发现文章( site.posts )排序按照.md 文件的创建时间排序,而没有按照文章中的 date 排序。

这就导致了一个问题,我重装了一次电脑,.md 文件通过 git 备份了,还原回来的时候,md 的创建时间都是一样的,所以文章列表就按照文章标题排序了

随后就想起了以前使用 yilia 主题时,设置过置顶文章。所以做了排序,顺便做了置顶的功能。

@牵猪的松鼠根据这篇文章写了一个 npm 插件 hexo-generator-topindex
安装插件命令: npm install hexo-generator-topindex --save
如果安装插件,可跳过第一部分 #修改 hexo 的 js 代码,直接看第二部分 #设置置顶

# 修改 hexo 的 js 代码

直接上操作,修改 node_modules/hexo-generator-index/lib/generator.js

'use strict';
var pagination = require('hexo-pagination');
module.exports = function(locals){
  var config = this.config;
  var posts = locals.posts;
    posts.data = posts.data.sort(function(a, b) {
        if(a.top && b.top) { // 两篇文章 top 都有定义
            if(a.top == b.top) return b.date - a.date; // 若 top 值一样则按照文章日期降序排
            else return b.top - a.top; // 否则按照 top 值降序排
        }
        else if(a.top && !b.top) { // 以下是只有一篇文章 top 有定义,那么将有 top 的排在前面(这里用异或操作居然不行 233)
            return -1;
        }
        else if(!a.top && b.top) {
            return 1;
        }
        else return b.date - a.date; // 都没定义按照文章日期降序排
    });
  var paginationDir = config.pagination_dir || 'page';
  return pagination('', posts, {
    perPage: config.index_generator.per_page,
    layout: ['index', 'archive'],
    format: paginationDir + '/%d/',
    data: {
      __index: true
    }
  });
};

# 设置置顶

给需要置顶的文章加入 top 参数,如下

---
title: 每天一个linux命令
date: 2017-01-23 11:41:48
top: 1
categories:
- linux
tags:
- linux命令
---

如果存在多个置顶文章,top 后的参数越大,越靠前。

References
Netcan 的 解决 Hexo 置顶问题