好的,这是我的场景:我在 DFP 中定义了以下自定义定位条件:
- 键:smag-lps,值是在 WordPress 中匹配的静态页面名称,用于定位广告的目标网页
- key: postid, values - 允许用户输入帖子的 id 来定位广告的帖子。
目标是投放 DFP 广告,以在创建广告时选择页面名称或帖子 ID。在我的 WordPress 主题 header.php 中,我尝试了:
<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.pubads().set("adsense_background_color", "FFFFFF");
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/2152723/SM-Leaderboard1', [728, 90], 'div-gpt-ad-1366056066154-0').addService(googletag.pubads());
.addService(googletag.pubads())
.setTargeting("smag-lps", "<?php echo get_current_page(); ?>")
.setTargeting("postid", "<?php echo get_the_ID(); ?>");
googletag.defineSlot('/2152723/SM-Leaderboard2', [728, 90], 'div-gpt-ad-1366056066154-1').addService(googletag.pubads());
.addService(googletag.pubads())
.setTargeting("smag-lps", "<?php echo get_current_page(); ?>")
.setTargeting("postid", "<?php echo get_the_ID(); ?>");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
};
</script>
当我尝试使用 php echo 检索当前页面或 ID 时,它正在破坏我的网站。关于我做错了什么有什么建议吗?
-M