0%

hexo 博客搭建之打赏功能

在移动支付盛行时代,在国内最常见的就属微信支付和支付宝支付了。

1. 保存收款二维码图片

保存微信、支付宝收款二维码图片到 sources/images 目录。

source/images
├── alipay.jpg            支付宝收款二维码
├── avatar.jpg
├── favicon.ico
└── wechatpay.jpg        微信收款二维码

2. 编辑 主题配置文件:_config.next.yml ,开启打赏功能

1
2
3
4
5
6
7
8
9
10
11
12
13
# Reward (Donate)
# Front-matter variable (unsupport animation).
reward_settings:
# If true, reward will be displayed in every article by default.
enable: true
animation: true
#comment: Donate comment here.

reward:
wechatpay: /images/wechatpay.jpg
alipay: /images/alipay.jpg
#paypal: /images/paypal.png
#bitcoin: /images/bitcoin.png

3. 预览

开启后,在文章底部会有一个 打赏 按钮,点击后将展示收款二维码图片。