{教程}WordPress发布新文章Email通知注册用户

图片[1]-{教程}WordPress发布新文章Email通知注册用户-月宅酱的博客


首先需要你的主机支持邮件发送,加入到当前主题的functions.php最后一行里

function newPostNotify($post_ID) {
    if( wp_is_post_revision($post_ID) ) return;

    global $wpdb;
    $get_post_info = get_post($post_ID);
    if ( $get_post_info->post_status == 'publish' && $_POST['original_post_status'] != 'publish' ) {
        // 读数据库,获取所有用户的email
        $wp_user_email = $wpdb->get_results("SELECT DISTINCT user_email FROM $wpdb->users");
 
        // 依次给每个Email发邮件
        foreach ( $wp_user_email as $email ) {
            // 邮件标题:xx博客有新文章
            $subject = 'xx博客有新文章';

            // 邮件内容:新文章网址:+ URL
            $message = '新文章网址:' . get_permalink($post_ID);
                       
            // 发邮件
            wp_mail($email->user_email, $subject, $message);
        }
    }
}

// 钩子,一旦WordPress有新文章发布或文章被修改即刻执行newPostNotify函数
add_action('publish_post', 'newPostNotify');

 

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容