我是一个赤果果的雅黑控大家懂的,就连打印也毫不吝啬的使用微软雅黑……
所以,当我看到微软雅黑的回复之后顿时羡慕嫉妒恨……(喂喂夸张了吧)
感谢珊宝如此慷慨=w=~
原则是不写出处- -但写一下好友的链接什么的不处罚法律吧(这是什么坑爹的原则 某:好吧仅限空领 我可是支持原创的好人呢)
看一下样式:原来的
现在的
很好看吧=w=~
放在functions.php
/* comment_mail_notify v1.0 by willin kan. (有勾選欄, 由訪客決定) */
function comment_mail_notify($comment_id) {
$admin_notify = ‘1’; // admin 要不要收回覆通知 ( ‘1’=要 ; ‘0’=不要 )
$admin_email = get_bloginfo (‘admin_email’); // $admin_email 可改為你指定的 e-mail.
$comment = get_comment($comment_id);
$comment_author_email = trim($comment->comment_author_email);
$parent_id = $comment->comment_parent ? $comment->comment_parent : ‘’;
global $wpdb;
if ($wpdb->query(“Describe {$wpdb->comments} comment_mail_notify”) == ‘’)
$wpdb->query("ALTER TABLE {$wpdb->comments} ADD COLUMN comment\_mail\_notify TINYINT NOT NULL DEFAULT 0;");
if (($comment_author_email != $admin_email && isset($_POST[‘comment_mail_notify’])) || ($comment_author_email == $admin_email && $admin_notify == ‘1’))
$wpdb->query("UPDATE {$wpdb->comments} SET comment\_mail\_notify='1' WHERE comment\_ID='$comment\_id'");
$notify = $parent_id ? get_comment($parent_id)->comment_mail_notify : ‘0’;
$spam_confirmed = $comment->comment_approved;
if ($parent_id != ‘’ && $spam_confirmed != ‘spam’ && $notify == ‘1’) {
$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") . '\] 的留言有了回應';
$message = '
<div style="background-color:#fff; border:1px solid #666666; color:#111;
-moz-border-radius:8px; -webkit-border-radius:8px; -khtml-border-radius:8px;
border-radius:8px; font-size:12px; width:702px; margin:0 auto; margin-top:10px;
font-family:微软雅黑, Arial;”>
<div style="background:#666666; width:100%; height:60px; color:white;
-moz-border-radius:6px 6px 0 0; -webkit-border-radius:6px 6px 0 0;
-khtml-border-radius:6px 6px 0 0; border-radius:6px 6px 0 0; “>
您在<a style=”text-decoration:none; color:#00bbff;font-weight:600;”
href=”‘ . get_option(‘home’) . ‘“>’ . get_option(‘blogname’) . ‘
博客上的留言有回复啦!