WordPress实现评论回复微信通知功能

前几天登录后台发现有评论没有及时回复,但不想配置SMTP,还是感觉用微信接收通知方便些。

网上搜了半天没有找到相关插件,难道大家都不需要么🤣

其实几行代码就可以实现《群晖设置微信推送信息》中的效果,Follow me!

  • 登录WordPress后台,点击“外观”选项卡下的“主题文件编辑器”选项进入主题编辑界面。
  • 选择functions.php,在文件中添加以下函数:
function comment_notify($comment_id) {
  $comment = get_comment($comment_id);
  $encoded = urlencode(get_the_title($comment->comment_post_ID));
  $message = '《'.$encoded.'》有新的留言啦!';
  if (($comment != '')) {
	$url='你的接口地址';
	$html = file_get_contents($url);
  }
}
	add_action('comment_post', 'comment_notify');

我用的是微信机器人,所以简单的GET就可以满足需求。

GET请求URL地址长度有限,太长会被截断,内容很多的情况推荐用POST请求,不过好像也没有这个必要…

没有机器人可以注册XPusher,一个便捷的万能消息推送服务,简单配置下参数就可以用啦!

XPusher推送代码(通过邀请码4081注册XPusher的童鞋可留言获取)

 

此处内容仅供个人学习研究,立即查看!

 

邮件提醒代码

function comment_mail_notify($comment_id) {
  $comment = get_comment($comment_id);
  $parent_id = $comment->comment_parent ? $comment->comment_parent : '';
  $spam_confirmed = $comment->comment_approved;
  if (($parent_id != '') && ($spam_confirmed != 'spam')) {
    $wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME'])); //e-mail 发出点, no-reply 可改为可用的 e-mail.
    $to = trim(get_comment($parent_id)->comment_author_email);
    $subject = '您在 [' . get_option("blogname") . '] 的留言有了回复';
    $comment_link = get_comment_link($comment_id); // 获取评论链接
    $message = '
    <div style="background-color:#eef2fa; border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;">
      <p>' . trim(get_comment($parent_id)->comment_author) . ', 您好!</p>
      <p>您曾在《' . get_the_title($comment->comment_post_ID) . '》的留言:<br />'
       . trim(get_comment($parent_id)->comment_content) . '</p>
      <p>' . trim($comment->comment_author) . ' 给您的回复:<br />'
       . trim($comment->comment_content) . '<br /></p>
      <p>您可以点击 <a href="' . $comment_link . '">查看回复完整內容</a></p> <!-- 添加评论链接 -->
      <p>欢迎再度光临 ' . get_option('blogname') . '</p>
      <p>(此邮件由系统自动发送,请勿回复.)</p>
    </div>';
    $from = "From: \"" . get_option('blogname') . "\" <$wp_email>";
    $headers = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n";
    wp_mail( $to, $subject, $message, $headers );
  }
}
add_action('comment_post', 'comment_mail_notify');

他山之石:wordpress新增文章新增评论自动通知到微信

function pushhub($title, $content) {
    $token = 'send_192f316xxxxxxxx34bcb0a50';    #这里填你的token
    $openLog = false;       #是否开启日志,记录每次的请求结果;开启true,关闭false
    /*------------------------ 优雅的分割线 ------------------------*/
    $data = array(
        'token' => $token,
        'title' => $title,
        'content' => $content
    );
    $log_dir = __DIR__ . '/logs';
    $log_file_error = $log_dir . '/pushhub_error_' . date('Ymd') . '.lock';
    $log_file_month = $log_dir . '/pushhub_' . date('m') . '.log';
    if (file_exists($log_file_error)) {
        return;
    }
    if (!is_dir($log_dir)) {
        mkdir($log_dir, 0755, true);
    }
    $url = 'https://api.pushhub.cn/send';
    $response = wp_remote_post($url, array(
        'body' => json_encode($data),
        'headers' => array('Content-Type' => 'application/json'),
        'sslverify' => false
    ));
    $log_content = "\n".date('Y/m/d H:i:s') . " | ";
    if (is_wp_error($response)&& $openLog) {
        $error_message = 'PushHub request failed: ' . $response->get_error_message();
        $log_content .= '[error]: ' . $error_message;
        file_put_contents($log_file_month, $log_content, FILE_APPEND);
        return;
    }
    $response_body = wp_remote_retrieve_body($response);
    $response_data = json_decode($response_body, true);
   if($openLog){
       $log_content .= json_encode($response_data, JSON_UNESCAPED_UNICODE);
       file_put_contents($log_file_month, $log_content, FILE_APPEND);
   }
   if (isset($response_data['code']) && $response_data['code'] >= 9000) {
        file_put_contents($log_file_error, json_encode($response_data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
   }
}
//新增评论
add_action('wp_insert_comment', function($comment_ID, $comment_approved) {
    // 检查评论是否已经通过审核
    if ($comment_approved != 1) {
        return;
    }
    $comment = get_comment($comment_ID);
    $post = get_post($comment->comment_post_ID);
    $post_title = get_post($comment->comment_post_ID)->post_title;
    $conmment_link = get_comment_link($comment_ID);
    $conment_date = $comment->comment_date;
    $content = '《 ' . $post_title . " 》有一条新评论:\n\n" . $comment->comment_content . "\n\n\n评论时间:$conment_date\n评论链接:<a href='$conmment_link'>$conmment_link</a>";
    pushhub('新评论:' . $comment->comment_content, $content);
}, 10, 2);
//新增文章通知
add_action('wp_insert_post', function ($post_ID, $post, $update) {
    // 检查是否为新文章而不是更新文章,如果更新文章也要通知,可以把这个去除掉
    if ($update) {
        return;
    }
    if (in_array($post->post_title, array(
        '自动草稿',
        'Custom Styles'
    ))) {
        return;
    }
    $post_url = get_permalink($post_ID);
    $content = '新增文章:《' . $post->post_title . "》\n------------------\n文章链接:<a href='$post_url'>$post_url</a>";
    pushhub('新文章:' . $post->post_title, $content);
}, 10, 3);

欢迎大佬留言更简单易用的推送方式!💌

暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇