多个Google Adsense广告只用调用一次JS代码

Google Adsense
Google Adsense

我们在申请Google Adsense广告后,一般一个页面会投放多个广告组,而且Google每个广告组都会调用同样的一段JS代码:

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>

实际上,我们可以在<head></head>中间调用一次JS后,后面就不需要重复调用,这对网页加载速度有帮助。

<ins class="adsbygoogle adsense_link_responsive_1"
style="display:block"
data-ad-client="ca-pub-909487182760xxxx"
data-ad-slot="417714xxxx"
data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

每个位置仅需要插入以上代码即可。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注