hexo next 设置 Google 广告

hexo next 设置 Google 广告

选择 Google AdSense 作为广告商,Google AdSense 的配置很简单。

注册 AdSense

  • 注册 AdSense 账号
  • 三种验证方式,任选一种(AdSense 代码段、Ads.txt 代码段、元标记)
  • 完成注册后,审核 2-4 周左右

AdSense 代码段

配置 _config.next.yml

1
2
custom_file_path:
head: source/_data/head.njk

创建 source/_data/head.njk 文件,并保存 AdSense 广告脚本:

1
2
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-*****************"
crossorigin="anonymous"></script>

创建 ads.txt

source/ 下创建ads.txt,并保存广告内容,hexo d -g部署后,ads.txt 会自动部署到/public/

元标记

配置 _config.next.yml

1
2
custom_file_path:
head: source/_data/head.njk

创建 source/_data/head.njk 文件,并保存元标记:

1
<meta name="google-adsense-account" content="ca-pub-*****************">