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

---

プラグインを検索

このプラグインは **WordPress の最新3回のメジャーリリースに対してテストされていま
せん**。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの 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://ja.wordpress.org/plugins/simple-comment-notification/#description)
 * [レビュー](https://ja.wordpress.org/plugins/simple-comment-notification/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/simple-comment-notification/#installation)
 * [開発](https://ja.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. WordPress の「プラグイン」メニューからプラグインを有効化してください

## FAQ

### 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 replies

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 reply

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/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/simple-comment-notification/)
を [RSS](https://plugins.trac.wordpress.org/log/simple-comment-notification/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 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またはそれ以降 **
 *  検証済み最新バージョン: **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://ja.wordpress.org/plugins/tags/author/)[comment](https://ja.wordpress.org/plugins/tags/comment/)
   [comments](https://ja.wordpress.org/plugins/tags/comments/)[email](https://ja.wordpress.org/plugins/tags/email/)
   [notification](https://ja.wordpress.org/plugins/tags/notification/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/simple-comment-notification/advanced/)

## 評価

 5つ星中3.7つ星

 *  [  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/)