我有关于Adsense广告的问题,当我点击我的网页源代码时,广告脚本就在这里,但广告没有显示,请参阅下面的链接。
广告可以出现在主题之上。
链接到该页面: http://improveyourself.sk/article_2
更新: 我的脚本代码:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Test ad -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-5699588432146886"
data-ad-slot="8670387053"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
答案 0 :(得分:0)
广告实际上已加载,但空间已崩溃。这主要是由于AdSense无法检测到广告的可用空间。
这是一个帮助您解决问题的artikel。
答案 1 :(得分:0)
你的脚本应该是这样的:
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-xxxx"
data-ad-slot="xxxx"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
更改您的第一个脚本地址。使用show_ads.js而不是adsbygoogle.js。