WordPress非外掛程式實現評論回覆郵件提醒通知

2022-05-13 23:11:54 字數 3414 閱讀 4016

12

3456

78910

1112

1314

1516

1718

1920

2122

2324

2526

2728

/* comment_mail_notify v1.0 by willin kan. (所有回覆都發郵件) */

functioncomment_mail_notify($comment_id)

}

add_action('comment_post','comment_mail_notify');

// -- end ----------------------------------------12

3456

78910

1112

1314

1516

1718

1920

2122

2324

2526

2728

2930

3132

3334

3536

3738

3940

4142

/* 開始*/

functioncomment_mail_notify($comment_id) comment_mail_notify") =='')

$wpdb->query("alter table 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 set comment_mail_notify='1' where comment_id='$comment_id'");

$notify=$parent_id? get_comment($parent_id)->comment_mail_notify :'0';

$spam_confirmed=$comment

if($parent_id!=''&&$spam_confirmed!='spam'&&$notify=='1')

}

add_action('comment_post','comment_mail_notify');

/* 自動加勾選欄 */

functionadd_checkbox()

add_action('comment_form','add_checkbox');

上面最後一句

1有人回覆時郵件通知我';

網上原來的**是

1有人回覆時郵件通知我';

只是因為label是塊元素,會自動換行,效果就是文字在核取方塊的下面,所以我為了讓文字顯示在核取方塊的右邊,就使用了內聯元素span,這樣就不會自動換行了。

3.讓部落格管理員決定什麼情況下發郵件

在functions.php檔案中的之間新增以下函式:12

3456

78910

1112

1314

1516

1718

1920

2122

2324

2526

2728

2930

3132

3334

3536

/* comment_mail_notify v1.0 by willin kan. (無勾選欄) */

functioncomment_mail_notify($comment_id)

}

add_action('comment_post','comment_mail_notify');

// -- end ----------------------------------------

根據你的需要隨意選擇一種,我使用的是第二種。

WordPress非外掛程式新增文章瀏覽次數統計功能

wordpress文章瀏覽次數統計功能是必不可少的,不少主題已經整合該功能,如果你的主題沒有整合,你可以使用 wp postviews 外掛程式,或者試試本文的 1.在主題的 functions.php檔案的最後乙個 前面新增下面的 訪問計數 function record visitors add...

wordpress外掛程式大全

wordpress外掛程式列表 1 sawchuk buttons plugin 為你的模版新增按鈕。2 full featured comments 3 installer plugin 自動安裝外掛程式 4 feedburner plugin 把預設的rss全部替換成feedburner燒製的r...

wordpress外掛程式feed count中文版

上傳 feedcount.php 到 wordpress 外掛程式目錄 wp content plugins 在 wordpress 後台外掛程式頁面啟用此外掛程式 在選項 wp後台,選項,feed count 修改你的 feed 確定允許使用 feedburner api 函式 在 feedbur...