首页    >    新闻资讯    >   在WordPress日志的任何位置嵌入广告

在WordPress日志的任何位置嵌入广告

首先在function.php文件里加入以下代码,记得把广告代码换成你自己的:

function showads() {
return ‘<script type=”text/javascript”><!–
google_ad_client = “pub-3637220125174754”;
google_ad_slot = “4668915978”;
google_ad_width = 468;
google_ad_height = 60;
//–>
</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
‘;
}

add_shortcode(‘adsense’, ‘showads’);

保存文件,然后你就可以在文章的任何位置添加广告代码了。方法很简单,只需在html模式下在编辑器中输入:

[adsense]

大功告成!

原文地址:http://www.wprecipes.com/how-to-embed-adsense-anywhere-on-your-posts

分类:新闻资讯

标签:,

* 版权声明:作者WordPress啦! 转载请注明出处。