如何在amp页面显示广告

时间:2018-11-01 21:20:26

标签: wordpress adsense amp-html

我将此代码添加到functions.php中以执行该操作,但广告未在我的功放页面上显示。

//Adding Header Code in AMP pages in WordPress
 add_action(‘amp_post_template_head’,’nhb_amp_my_custom_head’); 
 function nhb_amp_my_custom_head($amp_template) { ?> //adsense_header_code <?php }

//Adding Footer Code in AMP pages in WordPress
 add_action(‘amp_post_template_footer’,’nhb_amp_my_custom_footer’); 
 function nhb_amp_my_custom_footer($amp_template) { ?> //adsense_body_code <?php }

1 个答案:

答案 0 :(得分:0)

您可以使用<amp-ad><amp-embed>标签在功放页面上展示广告。

  

用于展示广告的容器。 amp-embedamp-ad的别名   标签,并以不同的标签名称派生其所有功能。采用   amp-embed语义上更准确。 AMP文档仅支持   通过HTTPS投放的广告/嵌入式广告。

示例:显示一些广告

<amp-ad type="a9"
    width="300"
    height="250"
    data-aax_size="300x250"
    data-aax_pubname="test123"
    data-aax_src="302">
</amp-ad>
<amp-ad width="300"
    height="250"
    type="industrybrains"
    data-width="300"
    data-height="250"
    data-cid="19626-3798936394">
</amp-ad>
<amp-embed type="taboola"
    width="400"
    height="300"
    layout="responsive"
    data-publisher="amp-demo"
    data-mode="thumbnails-a"
    data-placement="Ads Example"
    data-article="auto">
</amp-embed>

有关更多示例,您可以尝试访问此link