前面我介绍了 Google Adsense 个人经验总结,今天介绍一个 WordPress 技巧:使用 WordPress 的 Shortcode API 投放 Google Adsense 广告,让你非常方便在文章的正文中插入广告,并且根据内容灵活控制位置,提高点击率。
一般来说我们投放 Google Adsense 广告都是修改主题或者通过插件插入到文章的左侧,最后等,或者使用 Widget 放入侧边栏等等。但是如果你想在文章的中间插入广告,那么通过技术方式还是比较难以实现或者实现的不是很完美。请示我们可以使用 WordPress 的 Shortcode 来投放 Google Adsense 广告,非常方便。首先简单来了解下什么是 Shortcode。
Shortcode API 是 WordPress 2.5 之后新增的一个功能,简单的说就是事先定义一组的函数,由此生成对应的一个简单的短代码,然后在内容的正文中的任何地方插入这个短代码,就会调用预先定义的函数。比如:[galley]
就是调用 WordPress 默认的相册的短代码,当然也可以带有参数。更详细信息可以参考: WordPress Shortcode 介绍和详细使用
把下面的代码保存到你当前的主题的 functions.php
,或者上传到插件目录下并激活。
<?php
/*
Plugin Name: Shorcode for Google Adsense
Plugin URI: http://blog.wpjam.com/m/shortcode-google-adsense/
Description: 使用 Shortcode 投放 Google Adsense 广告
Version: 0.1
Author: Denis
*/
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]
你的 468x60 的广告代码(默认的广告代码),如果你想插入 300x250 的广告代码,在文章内容中插入 [adsense type="300x250"]
,当然你也可以扩展上面的代码增加更多广告的格式和类型。
这样就可以想把广告插在文章中的哪个位置,就能插在哪个位置了, 🙂 非常方便。