Hexo之加入广告

加入 广告

主要有两种:百度SSP谷歌Adsense。方法类似:

  1. 注册,复制广告代码

  2. 部署到网站。

    2.1. 新建 theme/*/layout/_custom/google_ad.swig,将 AdSense 上的代码粘贴进去

    2.2. 头部。在 theme/*/layout/_custom/head.swig 中也粘贴一份

    2.3. 每篇博客。在 theme/*/layout/post.swig 里中在希望看到的地方加上:

    1
    {% include '_custom/google_ad.swig' %}

    例如:在 <div id="posts" class="posts-expand"> </div> 中间插入,总代码如下:

    1
    2
    3
    4
    5
    6
    {% block content %}
    <div id="posts" class="posts-expand">
    {{ post_template.render(page) }}
    {% include '_custom/google_ad.swig' %}
    </div>
    {% endblock %}
  3. 等待审核通过。如果失败,可再次申请。

如果本文对您有用,谢谢打赏。

TDsimon wechat
欢迎扫一扫上面的微信公众号,订阅我的博客!