用Shortcode API在文章中任意投放Google Adsense

用Shortcode API在文章中任意投放Google Adsense

把下面的代码保存到你当前的主题的 functions.php,或者加上一个简单的插件头上传到插件目录下并激活。

add_shortcode('adsense', 'adsense_shortcode');
function adsense_shortcode($atts) {
	extract(shortcode_atts(array(
	'type' => '468x60',
	), $atts));
	switch ($type) {
		case '468x60' :
		return
			//468x60 的广告代码
		case '300x250' :
		return
			//300x250 的广告代码
	}
}

然后你就可以通过撰写文章的时候,在相应的位置输入 [adsense] 你的 468×60 的广告代码(默认的广告代码),如果你想插入 300×250 的广告代码,在文章内容中插入 [adsense type="300x250"],当然你也可以扩展上面的代码增加更多广告的格式和类型。

这样就可以想把广告插在文章中的哪个位置,就能插在哪个位置了, 非常方便。

更详细信息可以参考官方的 Shortcode API 文档