添加 RSS 订阅功能到 Hexo 博客

Posted by Calvin on 2017-03-31

首先,先安装 hexo-generator-feed

可以在Hexo根目录下运行如下代码:

$ npm install hexo-generator-feed --save

等待安装完后,你会在node_modules文件夹内发现生成了一个hexo-generator-feed文件

然后再配置根目录的_config.yml

# Extensions
## Plugins: http://hexo.io/plugins/
plugin:
- hexo-generator-feed
#Feed Atom
feed:
type: atom
path: atom.xml
limit: 20

最后,配置主题目录下的_config.yml,添加RSS订阅链接即可,如下为next主题的配置

# Set rss to false to disable feed link.
# Leave rss as empty to use site's feed link.
# Set rss to specific value if you have burned your feed already.
rss: "/atom.xml"

配置成功后的个人页面

点击RSS按钮的效果