谷歌Adsense在我的网站上没有显示我在桌面上打开但在智能手机上显示良好,因为我正在使用“sahifa v4.0”wordpress主题

时间:2014-01-23 16:34:48

标签: wordpress adsense

当我在桌面上打开广告时,我的网站上没有显示广告,但在智能手机上显示的很好,因为我正在使用“sahifa v4.0”wordpress主题。

我的网站是http://itsmyfun.net。一个广告位于标题部分,一个广告位于页脚部分之前。第三是在文章之前。

请指导我如何解决这个问题?

广告在移动设备上可见,您可以在此处查看:http://mattkersley.com/responsive/

1 个答案:

答案 0 :(得分:1)

您在嵌入广告的HTML部分遇到了一些问题。看看:

<script type="text/javascript">
var adWidth = jQuery(document).width();
google_ad_client = "5467995485431950";
if ( adWidth >= 768 ) {
  google_ad_slot    = "";
  google_ad_width   = 728;
  google_ad_height  = 90;
} else  if ( adWidth >= 468 ) {
  google_ad_slot    = "";
  google_ad_width   = 468;
  google_ad_height  = 60;
}else {
  google_ad_slot    = "";
  google_ad_width   = 300;
  google_ad_height  = 250;
}
</script>

您应该清理与大屏幕相关的第一个google_ad_slot。这就是为什么它适用于较小的屏幕(如果你重新加载页面并调整窗口大小,你也可以自己看看)