このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

WP Private Comment Notes

説明

WP Private Comment Notes will let WordPress admins/moderators add and manage private notes for each comment left through the WordPress commenting system. Additionally, each note can be shared with the user who left the original comment.

Comment notes can come in handy when managing popular blogs. WP Private Comment Notes serves as a “note to self” tool for comment moderators, or a private method of communication with the commenter.

Credits

Thanks to Ana Nirwana for the cool little message icon.

スクリーンショット

  • The comment.php?action=editcomment (edit comment) page with Comment Notes meta box

インストール

Automatically

  1. Search for WP Private Comment Notes in the Add New Plugin section of the WordPress admin.
  2. Install and activate.

Manually

  1. Download the zip file, decompress the file and upload the main plugin folder to the /wp-content/plugins/ directory.
  2. Activate the plugin.

FAQ

How do I use this plugin?

After activation, a Comment Notes meta box is added to the edit page of a comment. From the meta box you can add and remove comment notes. When adding a comment, you have the option to email the contents of the note to the original commenter.

Who can manage comment notes?

By default, anyone with the moderate_comments capability. This can be changed though a simple filter:

add_filter( 'wp_private_comment_notes_capability', 'rv_wp_private_comment_notes_capability', 10, 2 );
/**
 *  Allow only administrators to manage comment notes
 *  @param $capability (string) - WordPress capability
 *  @param $user_id (int) - User ID to check
 *  @return $capability
 */
function rv_wp_private_comment_notes_capability( $capability, $user_id ) {
    $capability = 'manage_options';
    return $capability;
}
Can I customize the email sent to the original commenter?

Yes. There are a few filters you can use to customize the email’s “From Name/Email,” subject, message and headers. For more, see the send_email() method in wp-private-comment-notes.php.

評価

このプラグインにはレビューがありません。

貢献者と開発者

WP Private Comment Notes はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“WP Private Comment Notes” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1.0

  • Initial version