WordPress 使用短代码插入 Google 趋势图 | 周良博客

我是创始人李岩:很抱歉!给自己产品做个广告,点击进来看看。  
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/*
Plugin Name: WordPress 短代码插入 Google 趋势图
Plugin URI: http://www.aips.me/wordpress-shortcode-google-trends.html
Description: WordPress 使用短代码插入 Google 趋势图
Version: 0.1
Author: xiaowudesign
Author URI: http://www.aips.me/
*/

function wps_trend($atts){
extract( shortcode_atts( array(
=> , // 宽度
=> , // 高度
=> , // 查询
=> , // geo地点
), $atts ) );
//输入格式
$h=(int)$h;
$w=(int)$w;
$q=esc_attr($q);
$geo=esc_attr($geo);
ob_start();
?>
<script type="text/javascript" src="http://www.google.com/trends/embed.js?hl=en-US&q=<?php echo $q;?>&geo=<?php echo $geo;?>&cmpt=q&content=1&cid=TIMESERIES_GRAPH_0&export=5&w=<?php echo $w;?>&h=<?php echo $h;?>"></script>
<?php
return ob_get_clean();
}
add_shortcode("trends","wps_trend");

随意打赏

提交建议
微信扫一扫,分享给好友吧。