WordPress优化技巧:评论审核+回复+会员信息更新+新文章邮件通知系统美化.
WordPress优化技巧:评论审核+回复+会员信息更新+新文章邮件通知系统美化
我们都知道WordPress给用户发送的邮件是十分原生态的,没有任何的修饰以及任何的美化。通过编写静态的HTML,结合目前广为流传邮件通知代码,设计出较为美观的通知样式,如果你正好需要就拿去用吧。修改后效果如下:
WordPress 邮件通知系统美化包含功能:
1、评论审核通过通知用户
2、评论回复通知用户
3、网站后台登录失败通知管理员
4、注册用户资料信息更新通知用户
5、注册用户账户被管理员删除通知用户
6、网站发布新文章通知用户
使用方法:
将以下代码粘贴到主题的 functions.php 文件中,然后根据自己网站情况修改相应的文字内容:
- //邮件通知系统美化
- <?php
- //定义界面顶部区域内容,请注意修改您的主题目录
- $email_bg =get_bloginfo(‘url’<span%20class=”pun”>) .‘/wp-content/themes/主题目录/images/emailbg.jpg’<span%20class=”pun”>;</span%20class=”pun”></span%20class=”pun”>
- define (’emailbg’<span%20class=”pun”>, $email_bg );</span%20class=”pun”>
- $email_headertop = ‘
- <div class=”emailpaged” style=”background-image: url(‘<span%20class=”pun”>.emailbg.‘);-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;background-position: center center;background-repeat: no-repeat;”></span%20class=”pun”>
- <div class=”emailcontent” style=”width:100%;max-width:720px;text-align: left;margin: 0 auto;padding-top: 80px;padding-bottom: 20px”>
- <div class=”emailtitle”>
- <h1 style=”color:#fff;background: #51a0e3;line-height:70px;font-size:24px;font-weight:normal;padding-left:40px;margin:0″>
- ‘<span%20class=”pun”>;</span%20class=”pun”>
- define (’emailheadertop’<span%20class=”pun”>, $email_headertop );</span%20class=”pun”>
- $email_headerbot = ‘
- </h1>
- <div class=”emailtext” style=”background:#fff;padding:20px 32px 40px;”>
- ‘<span%20class=”pun”>;</span%20class=”pun”>
- define (’emailheaderbot’<span%20class=”pun”>, $email_headerbot );</span%20class=”pun”>
- //定义界面底部区域内容,请注意修改下面广告图片地址
- $email_footer = ‘
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>(此邮件由系统自动发出, 请勿回复。)</p>
- </div>
- <div class=”emailad” style=”margin-top: 24px;”>
- <a href=”‘%20<span%20class=”pun”>. get_bloginfo(‘url’<span%20class=”pun”>) . ‘”></span%20class=”pun”></span%20class=”pun”>
- <img src=”广告地址” alt=”” style=”margin: auto;width:100%;max-width:700px;height: auto;”>
- </a>
- </div>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;text-align:right;padding:0 32px”>邮件来自:<a href=”‘%20<span%20class=”pun”>.get_bloginfo(‘url’<span%20class=”pun”>) . ‘” style=”color:#51a0e3;text-decoration:none”>’%20<span%20class=”pun”>. get_option(“blogname”) . ‘</a></p></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- </div>
- </div>
- </div>
- ‘<span%20class=”pun”>;</span%20class=”pun”>
- define (’emailfooter’<span%20class=”pun”>, $email_footer );</span%20class=”pun”>
- //修改网站默认发信人以及邮箱
- function new_from_name($email){
- $wp_from_name = get_option(‘blogname’<span%20class=”pun”>);</span%20class=”pun”>
- return $wp_from_name;
- }
- function new_from_email($email) {
- $wp_from_email = get_option(‘admin_email’<span%20class=”pun”>);</span%20class=”pun”>
- return $wp_from_email;
- }
- add_filter(‘wp_mail_from_name’<span%20class=”pun”>, ‘new_from_name’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- add_filter(‘wp_mail_from’<span%20class=”pun”>, ‘new_from_email’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- //评论通过通知评论者
- add_action(‘comment_unapproved_to_approved’<span%20class=”pun”>, ‘iwill_comment_approved’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- function iwill_comment_approved($comment) {
- if(is_email($comment->comment_author_email)) {
- $post_link = get_permalink($comment->comment_post_ID);
- // 邮件标题,可自行更改
- $title = ‘您在 [‘%20<span%20class=”pun”>. get_option(‘blogname’<span%20class=”pun”>) . ‘] 的评论已通过审核’<span%20class=”pun”>;</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- // 邮件内容,按需更改。如果不懂改,可以给我留言
- $body = emailheadertop.‘留言审核通过通知’<span%20class=”pun”>.emailheaderbot.‘<p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>您在’%20<span%20class=”pun”>. get_option(‘blogname’<span%20class=”pun”>) . ‘《<a href=”‘<span%20class=”pun”>.$post_link.‘”>’<span%20class=”pun”>.get_the_title($comment->comment_post_ID).‘</a>》发表的评论:</p></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;padding:10px 20px;background:#f8f8f8;margin:0px”>’<span%20class=”pun”>.$comment->comment_content.‘</p></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>已通过管理员审核并显示。<br />
- 您可在此查看您的评论:<a href=”‘<span%20class=”pun”>.get_comment_link( $comment->comment_ID ).‘”>前往查看</a></p>’<span%20class=”pun”>.emailfooter;</span%20class=”pun”></span%20class=”pun”>
- @wp_mail($comment->comment_author_email, $title, $body, “Content-Type: text/html; charset=UTF-8”);
- }
- }
- /* 邮件评论回复美化版 */
- function comment_mail_notify($comment_id) {
- $admin_email = get_bloginfo (‘admin_email’<span%20class=”pun”>);</span%20class=”pun”>
- $comment = get_comment($comment_id);
- $comment_author_email = trim($comment->comment_author_email);
- $parent_id = $comment->comment_parent ? $comment->comment_parent : ”<span%20class=”pun”>;</span%20class=”pun”>
- $to = $parent_id ? trim(get_comment($parent_id)->comment_author_email) : ”<span%20class=”pun”>;</span%20class=”pun”>
- $spam_confirmed = $comment->comment_approved;
- if (($parent_id != ”<span%20class=”pun”>) && ($spam_confirmed != ‘spam’<span%20class=”pun”>) && ($to != $admin_email)) {</span%20class=”pun”></span%20class=”pun”>
- $wp_email = ‘no-reply@’%20<span%20class=”pun”>. preg_replace(‘#^www\.#’<span%20class=”pun”>, ”<span%20class=”pun”>, strtolower($_SERVER[‘SERVER_NAME’<span%20class=”pun”>]));</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- $subject = ‘您在 [‘%20<span%20class=”pun”>. get_option(“blogname”) . ‘] 的留言有了新回复’<span%20class=”pun”>;</span%20class=”pun”></span%20class=”pun”>
- $message = emailheadertop.‘您在’%20<span%20class=”pun”>. get_option(“blogname”) . ‘上的留言有回复啦!’<span%20class=”pun”>.emailheaderbot.‘</span%20class=”pun”></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>’%20<span%20class=”pun”>. trim(get_comment($parent_id)->comment_author) . ‘, 您好!</p></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>您在《’%20<span%20class=”pun”>. get_the_title($comment->comment_post_ID) .‘》的留言:<br /></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;padding:10px 20px;background:#f8f8f8;margin:0px”>’<span%20class=”pun”>.trim(get_comment($parent_id)->comment_content) . ‘</p></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>’%20<span%20class=”pun”>. trim($comment->comment_author) . ‘ 给你的回复:<br /></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;padding:10px 20px;background:#f8f8f8;margin:0px”>’<span%20class=”pun”>.trim($comment->comment_content) . ‘</p></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>你可以点击<a href=”‘%20<span%20class=”pun”>.htmlspecialchars(get_comment_link($parent_id, array(‘type’%20<span%20class=”pun”>=> ‘comment’<span%20class=”pun”>))) . ‘”>查看完整内容</a></p></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>欢迎再度光临<a href=”‘%20<span%20class=”pun”>. get_option(‘home’<span%20class=”pun”>) .‘”>’%20<span%20class=”pun”>. get_option(‘blogname’<span%20class=”pun”>) . ‘</a></p></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- ‘<span%20class=”pun”>.emailfooter;</span%20class=”pun”>
- $from = “From: \”” . get_option(‘blogname’<span%20class=”pun”>) . “\” <$wp_email>”;</span%20class=”pun”>
- $headers = “$from\nContent-Type: text/html; charset=” . get_option(‘blog_charset’<span%20class=”pun”>) . “\n”;</span%20class=”pun”>
- wp_mail( $to, $subject, $message, $headers );
- }
- }
- add_action(‘comment_post’<span%20class=”pun”>, ‘comment_mail_notify’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- // 博客后台登录失败时发送邮件通知管理员
- function wp_login_failed_notify(){
- date_default_timezone_set(‘PRC’<span%20class=”pun”>);</span%20class=”pun”>
- $admin_email = get_bloginfo(‘admin_email’<span%20class=”pun”>);</span%20class=”pun”>
- $to = $admin_email;
- $subject = ‘【登录失败】有人使用了错误的用户名或密码登录’%20<span%20class=”pun”>. get_bloginfo(‘name’<span%20class=”pun”>) . ‘!’<span%20class=”pun”>;</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- $message = emailheadertop . get_bloginfo(‘name’<span%20class=”pun”>) . ‘账户登录失败通知!’<span%20class=”pun”>.emailheaderbot.‘</span%20class=”pun”></span%20class=”pun”>
- <div style=”padding:0;font-weight:bold;color:#6e6e6e;font-size:16px”>尊敬的管理员您好!</div>
- <p style=”color: red;font-size:13px;line-height:24px;”>’%20<span%20class=”pun”>. get_bloginfo(‘name’<span%20class=”pun”>) . ‘有一条登录失败的记录产生,若登录操作不是您产生的,请及时注意网站安全!</p></span%20class=”pun”></span%20class=”pun”>
- <table cellpadding=”0″ cellspacing=”0″ border=”0″ style=”width:100%;border-top:1px solid #eee;border-left:1px solid #eee;color:#6e6e6e;font-size:16px;font-weight:normal”>
- <thead><tr><th colspan=”2″ style=”padding:10px 0;border-right:1px solid #eee;border-bottom:1px solid #eee;text-align:center;background:#f8f8f8;”>失败信息如下</th></tr></thead>
- <tbody>
- <tr>
- <td style=”padding:10px 0;border-right:1px solid #eee;border-bottom:1px solid #eee;text-align:center;width:100px”>登录名</td>
- <td style=”padding:10px 20px 10px 30px;border-right:1px solid #eee;border-bottom:1px solid #eee;line-height:30px”>’%20<span%20class=”pun”>. $_POST[‘log’<span%20class=”pun”>] . ‘</td></span%20class=”pun”></span%20class=”pun”>
- </tr>
- <tr>
- <td style=”padding:10px 0;border-right:1px solid #eee;border-bottom:1px solid #eee;text-align:center”>尝试的密码</td>
- <td style=”padding:10px 20px 10px 30px;border-right:1px solid #eee;border-bottom:1px solid #eee;line-height:30px”>’%20<span%20class=”pun”>. $_POST[‘pwd’<span%20class=”pun”>] . ‘</td></span%20class=”pun”></span%20class=”pun”>
- </tr>
- <tr>
- <td style=”padding:10px 0;border-right:1px solid #eee;border-bottom:1px solid #eee;text-align:center;”>登录时间</td>
- <td style=”padding:10px 20px 10px 30px;border-right:1px solid #eee;border-bottom:1px solid #eee;line-height:30px”>’%20<span%20class=”pun”>. date(“Y-m-d H:i:s”) . ‘</td></span%20class=”pun”>
- </tr>
- <tr>
- <td style=”padding:10px 0;border-right:1px solid #eee;border-bottom:1px solid #eee;text-align:center;”>登录IP</td>
- <td style=”padding:10px 20px 10px 30px;border-right:1px solid #eee;border-bottom:1px solid #eee;line-height:30px”>’%20<span%20class=”pun”>. $_SERVER[‘REMOTE_ADDR’<span%20class=”pun”>] . ‘</td></span%20class=”pun”></span%20class=”pun”>
- </tr>
- </tbody>
- </table>
- ‘<span%20class=”pun”>.emailfooter;</span%20class=”pun”>
- wp_mail( $to, $subject, $message, “Content-Type: text/html; charset=UTF-8” );
- }
- add_action(‘wp_login_failed’<span%20class=”pun”>, ‘wp_login_failed_notify’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- add_filter(‘logout_url’<span%20class=”pun”>, ‘mk_logout_redirect_home’<span%20class=”pun”>, 10, 2);</span%20class=”pun”></span%20class=”pun”>
- function mk_logout_redirect_home($logouturl, $redir){
- $redir = home_url();
- return $logouturl . ‘&redirect_to=’%20<span%20class=”pun”>. urlencode($redir);</span%20class=”pun”>
- }
- //用户更新账户通知用户
- function user_profile_update( $user_id ) {
- $site_url = get_bloginfo(‘wpurl’<span%20class=”pun”>);</span%20class=”pun”>
- $site_name = get_bloginfo(‘wpname’<span%20class=”pun”>);</span%20class=”pun”>
- $user_info = get_userdata( $user_id );
- $to = $user_info->user_email;
- $subject = “”.$site_name.“账户更新”;
- $message = emailheadertop.‘您在’%20<span%20class=”pun”>.$site_name. ‘账户资料修改成功!’<span%20class=”pun”>.emailheaderbot.‘<p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>亲爱的 ‘%20<span%20class=”pun”>.$user_info->display_name . ‘<br/>您的资料修改成功!<br/>谢谢您的光临</p>’<span%20class=”pun”>.emailfooter;</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- wp_mail( $to, $subject, $message, “Content-Type: text/html; charset=UTF-8”);
- }
- add_action( ‘profile_update’<span%20class=”pun”>, ‘user_profile_update’<span%20class=”pun”>, 10, 2);</span%20class=”pun”></span%20class=”pun”>
- //用户账户被删除通知用户
- function iwilling_delete_user( $user_id ) {
- global $wpdb;
- $site_name = get_bloginfo(‘name’<span%20class=”pun”>);</span%20class=”pun”>
- $user_obj = get_userdata( $user_id );
- $email = $user_obj->user_email;
- $subject = “帐号删除提示:”.$site_name.“”;
- $message = emailheadertop.‘您在’%20<span%20class=”pun”>.$site_name. ‘的账户已被管理员删除!’<span%20class=”pun”>.emailheaderbot.‘<p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>如果您对本次操作有什么异议,请联系管理员反馈!<br/>我们会在第一时间处理您反馈的问题.</p>’<span%20class=”pun”>.emailfooter;</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- wp_mail( $email, $subject, $message, “Content-Type: text/html; charset=UTF-8”);
- }
- add_action( ‘delete_user’<span%20class=”pun”>, ‘iwilling_delete_user’%20<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- // WordPress 发布新文章后邮件通知已注册的用户
- function newPostNotify($post_ID) {
- if( wp_is_post_revision($post_ID) ) return;
- global $wpdb;
- $site_name = get_bloginfo(‘name’<span%20class=”pun”>);</span%20class=”pun”>
- $post_contents = get_post($post_ID)->post_content;
- $get_post_info = get_post($post_ID);
- if ( $get_post_info->post_status == ‘publish’%20<span%20class=”pun”>&& $_POST[‘original_post_status’<span%20class=”pun”>] != ‘publish’%20<span%20class=”pun”>) {</span%20class=”pun”></span%20class=”pun”></span%20class=”pun”>
- // 读数据库,获取所有用户的email
- $wp_user_email = $wpdb->get_col(“SELECT DISTINCT user_email FROM $wpdb->users”);
- // 邮件标题
- $subject = ‘Hi!’<span%20class=”pun”>.$site_name.‘发布新文章啦!’<span%20class=”pun”>;</span%20class=”pun”></span%20class=”pun”>
- // 邮件内容
- $message = emailheadertop.$site_name. ‘发布新文章啦!’<span%20class=”pun”>.emailheaderbot.‘</span%20class=”pun”>
- <div style=”padding:0;font-weight:bold;color:#6e6e6e;font-size:16px”>文章标题:’%20<span%20class=”pun”>. get_the_title($post_ID) . ‘</div></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;”>’%20<span%20class=”pun”>. mb_strimwidth($post_contents, 0, 320,“…”) . ‘</p></span%20class=”pun”>
- <p style=”color: #6e6e6e;font-size:13px;line-height:24px;text-align:right”><a href=”‘%20<span%20class=”pun”>. get_permalink($post_ID) .‘”>查看全文</a><br /></p></span%20class=”pun”>
- ‘<span%20class=”pun”>.emailfooter;</span%20class=”pun”>
- // 发邮件
- $message_headers = “Content-Type: text/html; charset=\”utf-8\”\n”;
- wp_mail($wp_user_email, $subject, $message, $message_headers);
- }
- }
- add_action(‘publish_post’<span%20class=”pun”>, ‘newPostNotify’<span%20class=”pun”>);</span%20class=”pun”></span%20class=”pun”>
- ?>
注意事项:
1、自行设计 emailbg.jpg 文件,放在主题的 images 文件夹下面,请与代码第三行地址保持一致;
2、代码26行定义了一个广告图片,建议大家使用photoshop制作以后换成自己的;
3、174行定义了摘要显示字数,您可以随意换成您自己的,然后去看看效果吧!
常见问题FAQ
- RD.IT速极网可以技术支持吗?
- 需要技术技术资源联系客服即可!