Title: Simple Comment Notification
Author: Beherit
Published: <strong>2016 年 3 月 6 日</strong>
Last modified: 2020 年 4 月 8 日

---

搜尋外掛

這個外掛**並未在最新的 3 個 WordPress 主要版本上進行測試**。開發者可能不再對這個
外掛進行維護或提供技術支援，並可能會與更新版本的 WordPress 產生使用上的相容性問題。

![](https://s.w.org/plugins/geopattern-icon/simple-comment-notification.svg)

# Simple Comment Notification

 由 [Beherit](https://profiles.wordpress.org/beherit/) 開發

[下載](https://downloads.wordpress.org/plugin/simple-comment-notification.1.2.4.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/simple-comment-notification/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/simple-comment-notification/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/simple-comment-notification/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/simple-comment-notification/#developers)

 [技術支援](https://wordpress.org/support/plugin/simple-comment-notification/)

## 外掛說明

Sends an simply email notification to the comment author, when someone replies to
his comment. No configuration, support WordPress translation process.

## 安裝方式

In most cases you can install automatically from plugins page in admin panel.

However, if you want to install it manually, follow these steps:

 1. Download the plugin and unzip the archive.
 2. Upload the entire `simple-comment-notification` folder to the `/wp-content/plugins/`
    directory.
 3. Activate the plugin through the Plugins menu in WordPress.

## 常見問題集

### Subscription

It’s possible to send email notification only if user checked subscription checkbox.
To enable this functionality you must add such code (e.g. in functions.php in the
active theme):

    ```
    add_filter('scn_enable_subscription', '__return_true');
    ```

Optionally, you can also change default checkbox value to true:

    ```
    add_filter('scn_subscribe_value', '__return_true');
    ```

### Autoresponder

Plugin have a hidden functionality that sends autoresponder to the author of the
comment. To turn it on you must add such code (e.g. in functions.php in the active
theme):

    ```
    add_filter('scn_autoresponder_to_author', '__return_true');
    ```

Optionally, you can also turn off default plugin functionality:

    ```
    add_filter('scn_notify_parent_author', '__return_false');
    ```

The title and content of the autoresponder can be personalized:

    ```
    function custom_scn_autoresponder_subject($subject, $comment_object) {
        return $subject;
    }
    add_filter('scn_autoresponder_subject', 'custom_scn_autoresponder_subject', 10, 2);

    function custom_scn_autoresponder_body($body, $comment_object) {
        return $body;
    }
    add_filter('scn_autoresponder_body', 'custom_scn_autoresponder_body', 10, 2);
    ```

You can even set who will not receive this notifications by changing minimum required
user capabilities:

    ```
    function custom_scn_autoresponder_cap() {
        return 'edit_posts';
    }
    add_filter('scn_autoresponder_cap', 'custom_scn_autoresponder_cap');
    ```

## 使用者評論

![](https://secure.gravatar.com/avatar/023f9ccfe736cc9ed42882588dc6e59440483fd1c192829c56a58f7fbb1526d4?
s=60&d=retro&r=g)

### 󠀁[Not working with 4.9.1](https://wordpress.org/support/topic/not-working-with-4-9-1/)󠁿

 [](https://profiles.wordpress.org/monkeykong/) 2018 年 1 月 7 日 4 則留言

Not working with 4.9.1

![](https://secure.gravatar.com/avatar/6661a5d85f6d0fa8f8435d10779613ba3dbb7f82c31a494ef7d3de41a4c24fcd?
s=60&d=retro&r=g)

### 󠀁[Fantastic plugin](https://wordpress.org/support/topic/fantastic-plugin-814/)󠁿

 [serjao](https://profiles.wordpress.org/serjao/) 2017 年 10 月 11 日 1 則留言

A simple plugin, but it does job very well.

![](https://secure.gravatar.com/avatar/cc16ffb593690511d3559842f2a3ba9b0d430aca75e6d494aa56ff391b017141?
s=60&d=retro&r=g)

### 󠀁[Super!](https://wordpress.org/support/topic/super-484/)󠁿

 [Gronix](https://profiles.wordpress.org/gronix/) 2016 年 9 月 3 日

To działa! 🙂

 [ 閱讀全部 3 則使用者評論 ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/)

## 參與者及開發者

以下人員參與了開源軟體〈Simple Comment Notification〉的開發相關工作。

參與者

 *   [ Beherit ](https://profiles.wordpress.org/beherit/)

〈Simple Comment Notification〉外掛目前已有 7 個本地化語言版本。 感謝[全部譯者](https://translate.wordpress.org/projects/wp-plugins/simple-comment-notification/contributors)
為這個外掛做出的貢獻。

[將〈Simple Comment Notification〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/simple-comment-notification)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/simple-comment-notification/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/simple-comment-notification/)，
或透過 [RSS](https://plugins.trac.wordpress.org/log/simple-comment-notification/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/simple-comment-notification/)。

## 變更記錄

#### 1.2.4 (2020-04-08)

 * Fixed typos.

#### 1.2.2 (2020-04-08)

 * Minor bugfix.

#### 1.2 (2020-04-08)

 * Added subscription functionality (disabled by default).

#### 1.1 (2017-03-12)

 * Fix the URL to a new comment.
 * Sending autoresponder to the author of the comment (disabled by default).

#### 1.0.2 (2016-03-12)

 * Add POT file and remove language files to allow WordPress.org language packs 
   to take effect.

#### 1.0 (2016-03-06)

 * First public version.

## 中繼資料

 *  版本 **1.2.4**
 *  最後更新 **6 年前**
 *  啟用安裝數 **100+**
 *  WordPress 版本需求 ** 4.6 或更新版本 **
 *  已測試相容的 WordPress 版本 **5.4.19**
 *  PHP 版本需求 ** 7.0 或更新版本 **
 *  語言
 * [Czech](https://cs.wordpress.org/plugins/simple-comment-notification/)、[English (Australia)](https://en-au.wordpress.org/plugins/simple-comment-notification/)、
   [English (Canada)](https://en-ca.wordpress.org/plugins/simple-comment-notification/)、
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/simple-comment-notification/)、
   [English (South Africa)](https://en-za.wordpress.org/plugins/simple-comment-notification/)、
   [English (UK)](https://en-gb.wordpress.org/plugins/simple-comment-notification/)、
   [English (US)](https://wordpress.org/plugins/simple-comment-notification/)、及
   [Polish](https://pl.wordpress.org/plugins/simple-comment-notification/).
 *  [將這個外掛本地化為你的母語版本](https://translate.wordpress.org/projects/wp-plugins/simple-comment-notification)
 * 標籤:
 * [author](https://tw.wordpress.org/plugins/tags/author/)[comment](https://tw.wordpress.org/plugins/tags/comment/)
   [comments](https://tw.wordpress.org/plugins/tags/comments/)[email](https://tw.wordpress.org/plugins/tags/email/)
   [notification](https://tw.wordpress.org/plugins/tags/notification/)
 *  [進階檢視](https://tw.wordpress.org/plugins/simple-comment-notification/advanced/)

## 評分

 3.7 星，滿分為 5 星

 *  [  2 個 5 星使用者評論     ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/?filter=5)
 *  [  0 個 4 星使用者評論     ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/?filter=4)
 *  [  0 個 3 星使用者評論     ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/?filter=3)
 *  [  0 個 2 星使用者評論     ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/?filter=2)
 *  [  1 個 1 星使用者評論     ](https://wordpress.org/support/plugin/simple-comment-notification/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/simple-comment-notification/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/simple-comment-notification/reviews/)

## 參與者

 *   [ Beherit ](https://profiles.wordpress.org/beherit/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/simple-comment-notification/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](https://beherit.pl/en/donations/)