透過瀏覽廣告支持創作者
Google 就是透過廣告起家,自家的 Google Adsense 廣告服務也很成熟,設定也不難。唯獨會花一些審核時間,以及記得網站多一些內容才能順利通過審核唷。
申請步驟
提交網站資料至 Google
前往 Google Adsense 填寫資料
新增對應廣告程式碼至網站上
layouts/partials/adsense-google.html
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client={{ .Site.Params.GoogleAdSenseClient }}" crossorigin="anonymous"></script>
config.yml
params:
GoogleAdSenseClient: "ca-pub-0000000000000000"
layouts/_default/baseof.html
<head>
{{- partial "head.html" . }}
...
{{ if .Site.Params.GoogleAdSenseClient }}
{{ partial "adsense-google.html" . }}
{{ end }}
...
</head>
審核通過後設定廣告投放條件
Google Adsense 會提供基本設定檔案 ads.txt
請注意,ads.txt 要放置於網站根目錄:static/ads.txt
透過自動投放逛告設定,Google 就會自動於網站上擺放廣告溜~
當然也可以自行設定版面,設定上也蠻直覺的,自行測試看看囉!