一、前言
要完成这个WordPress有新评论微信提醒管理员的功能,需要用到这个叫「Server酱」的东西。
Server酱是什么?
「Server酱」,英文名「ServerChan」,是一款「程序员」和「服务器」之间的通信软件。
说人话?就是从服务器推报警和日志到手机的工具。
二、功能部署
1.注册:注册一个Github账号(如果有了可以跳过这步),注册地址
2.登入:用GitHub账号登入网站,就能获得一个SCKEY(在「发送消息」页面)
3.绑定:点击「微信推送」,扫码关注同时即可完成绑定
4.发消息:将获取的SCKEY替换代码中的“你的 SCKEY ”,添加到functions.php
,中保存即可。
function sc_send() { $key = '你的KEY'; $text = '网站上有一条新的评论'; $desp = '请登录网站查看'; $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('https://sc.ftqq.com/'.$key.'.send', false, $context); } add_action('comment_post', 'sc_send');
三、测试效果
完成上面操作之后,当博客有新评论的时候,「Server酱」之前绑定的公众号:方糖 就会消息提醒。
感觉功能很棒,赶快试一试吧!
来源:
https://cuijiahua.com/blog/2017/10/website_2.html