gpt4 book ai didi

wordpress - 广告停止显示。无法获取广告单元。其他广告工作正常,但代码不同。

转载 作者:行者123 更新时间:2023-12-04 16:15:51 28 4
gpt4 key购买 nike

一个广告单元刚刚停止工作,在尝试生成新代码后仍然无法工作。当我使用谷歌控制台时,它只是显示警告广告单元无法获取。其他3个广告工作正常。它们是在我开始研究这个项目之前插入的。

新的广告代码是这样生成的
标题

<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>

<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/6000854/R300x250_L', [300, 250], 'div-gpt-ad-1367703773182-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>

body
    <!-- R300x250_L -->
<div id='div-gpt-ad-1367703773182-0' style='width:300px; height:250px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1367703773182-0'); });
</script>
</div>

旧代码生成如下
标题
<script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'></script>

<script type='text/javascript'>
GS_googleAddAdSenseService("ca-pub-2838961657718357");
GS_googleEnableAllServices();
</script>

<script type='text/javascript'>
GA_googleAddSlot("ca-pub-2838961657718357", "Top728x90");
GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250");
GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250Bottom");
</script>

<script type='text/javascript'>
GA_googleFetchAds();
</script>

body
<!-- Right300x250Bottom -->
<script type='text/javascript'>
GA_googleFillSlot("Right300x250Bottom");
</script>

是否可能因为不同的标签或代码而发生冲突
注意:我只是 wordpress 前端开发人员,我无权访问 google DFP 服务,也没有生成标签或代码

最佳答案

编辑:基于此讨论,使用带有 GPT 标签的旧 GAM 标签现在可能是一个问题(就在最近)http://productforums.google.com/forum/#!topic/dfp/snK7znwUMBE

我认为您应该将 GAM 标记转换为 GPT 标记,并尽可能仅使用 DFP GPT 标记来阻止这种情况发生……这很可能是两个脚本之间的冲突,并且根据它们加载的顺序,GPT 标记可能不会工作...

原来的:
我刚刚尝试了您的代码,并且按预期显示了两个广告。因此,同时使用这两个脚本似乎没有任何冲突。

可能您已经多次刷新页面,以至于由于速率限制而不会再通过 DFP 为您展示广告?不过,这只是一个疯狂的猜测。如果我经常刷新页面,我会在控制台中时不时地获取消息失败,所以我认为这可能只是一个速率限制,普通用户不会有问题。

这是我正在使用的代码,页面上显示了两个 300x250 的广告,因此一切正常。

<html>
<head>
<title>DFP TEST</title>

<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>

<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/6000854/R300x250_L', [300, 250], 'div-gpt-ad-1367703773182-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>

<script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'></script>

<script type='text/javascript'>
GS_googleAddAdSenseService("ca-pub-2838961657718357");
GS_googleEnableAllServices();
</script>

<script type='text/javascript'>
GA_googleAddSlot("ca-pub-2838961657718357", "Top728x90");
GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250");
GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250Bottom");
</script>

<script type='text/javascript'>
GA_googleFetchAds();
</script>

</head>
<body>

<!-- R300x250_L -->
<div id='div-gpt-ad-1367703773182-0' style='width:300px; height:250px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1367703773182-0'); });
</script>
</div>

<!-- Right300x250Bottom -->
<script type='text/javascript'>
GA_googleFillSlot("Right300x250Bottom");
</script>

</body>
</html>

关于wordpress - 广告停止显示。无法获取广告单元。其他广告工作正常,但代码不同。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16418576/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com