为我们的wordpress网站评论添加一个微信提醒功能,这对于一些营销或是企业网站来将,大大提高了资源转化率,低成本在线提醒客户信息,不必每时去查看多站的留言情况。
那这个功能也是非常简单的,只要调用一个微信的信息,然后通过我们当前的wordpress主题拓展添加一下就可以使用了,但是对于不同配置环境的服务器,操作起来的方法各不相同,大挖这里只能提供一个标准配置的服务器解决方案。
第一、通过以下网址申请接口
申请账号:http://sc.ftqq.com/3.version
第二、以下添加代码添加进我们当前wordpress主题的functions.com文件内。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//评论微信推送 function sc_send($comment_id) { $text = '博客上有一条新的评论'; $comment = get_comment($comment_id); $desp = $comment->comment_content; $key = '你自己的SCKEY'; $postdata = http_build_query( array( 'text' => $text, 'desp' => $desp ) ); $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) ); $context = stream_context_create($opts); return $result = file_get_contents('http://sc.ftqq.com/'.$key.'.send', false, $context); } add_action('comment_post', 'sc_send', 19, 2); |
注意:在以上代码中要添加自己的key文件内容才能生效。