Title: WP Comment Notes
Author: Andrew Norcross
Published: <strong>2013 年 9 月 29 日</strong>
Last modified: 2013 年 9 月 29 日

---

搜索插件

![](https://ps.w.org/wp-comment-notes/assets/banner-772x250.png?rev=780009)

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

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

# WP Comment Notes

 作者：[Andrew Norcross](https://profiles.wordpress.org/norcross/)

[下载](https://downloads.wordpress.org/plugin/wp-comment-notes.1.0.0.zip)

 * [详情](https://cn.wordpress.org/plugins/wp-comment-notes/#description)
 * [评价](https://cn.wordpress.org/plugins/wp-comment-notes/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/wp-comment-notes/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/wp-comment-notes/#developers)

 [支持](https://wordpress.org/support/plugin/wp-comment-notes/)

## 描述

Add custom notes before or after the comment form.

## 屏幕截图

 * [[
 * Example of metaboxes
 * [[
 * Example of display

## 安装

This section describes how to install the plugin and get it working.

 1. Upload `wp-comment-notes` to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Add some text in the fields on a post
 4. That’s it.

## 常见问题

  How does it work?

Activate the plugin and the metaboxes will appear for posts. Use the filter to add
more post type support.

  Does this work on my custom post type?

Not by default. Use the `wpcmn_type_support` filter to add it. Example below:

    ```
    function cmm_partial_types( $types ) {

        $types[] = 'MY_CUSTOM_POST_TYPE';

        return $types;
    }
    add_filter( 'wpcmn_type_support', 'cmm_partial_types' );
    ```

  Can I add more options to the message type dropdown?

Sure can. Use the `wpcmn_before_types` or `wpcmn_after_types` filters. Example:

    ```
    function cmm_more_before( $before_type ) {

        $extra = '';
        $extra .= '<option value="wild" '.selected( $before_type, 'wild', false ).'>'.__('Wild', 'wpcmn').'</option>';
        $extra .= '<option value="crazy" '.selected( $before_type, 'crazy', false ).'>'.__('Crazy', 'wpcmn').'</option>';

        return $extra;

    }
    add_filter( 'wpcmn_before_types', 'cmm_more_before' );
    ```

  I don’t like the CSS that comes with it

Then write your own. It’s a free country. If you _have_ to disable it, use the `
wpcmn_killswitch` filter. Example:

    ```
    function cmm_killswitch() {

        return true;

    }
    add_filter( 'wpcmn_killswitch', 'cmm_killswitch' );
    ```

  Where is the settings menu?

There isn’t one. On purpose.

  They don’t show up on my theme.

Then you’re using a theme / framework that has gone cowboy and done it their own
way. I can’t do anything about that.

## 评价

此插件暂无评价。

## 贡献者及开发者

「WP Comment Notes」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Andrew Norcross ](https://profiles.wordpress.org/norcross/)
 *   [ Pippin Williamson ](https://profiles.wordpress.org/mordauk/)

[帮助将「WP Comment Notes」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/wp-comment-notes)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/wp-comment-notes/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/wp-comment-notes/)，或通过[RSS](https://plugins.trac.wordpress.org/log/wp-comment-notes/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/wp-comment-notes/)。

## 更新日志

#### 1.0

 * First release!

## 额外信息

 *  版本 **1.0.0**
 *  最后更新：**13 年前**
 *  活跃安装数量 **10+**
 *  WordPress 版本 ** 3.0 或更高版本 **
 *  已测试的最高版本为 **3.6.1**
 *  语言
 * [English (US)](https://wordpress.org/plugins/wp-comment-notes/)
 * 标签
 * [comment](https://cn.wordpress.org/plugins/tags/comment/)[comment notes](https://cn.wordpress.org/plugins/tags/comment-notes/)
   [comments](https://cn.wordpress.org/plugins/tags/comments/)
 *  [高级视图](https://cn.wordpress.org/plugins/wp-comment-notes/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/wp-comment-notes/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/wp-comment-notes/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/wp-comment-notes/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/wp-comment-notes/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/wp-comment-notes/reviews/?filter=1)

[添加我的评价](https://wordpress.org/support/plugin/wp-comment-notes/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/wp-comment-notes/reviews/)

## 贡献者

 *   [ Andrew Norcross ](https://profiles.wordpress.org/norcross/)
 *   [ Pippin Williamson ](https://profiles.wordpress.org/mordauk/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/wp-comment-notes/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://andrewnorcross.com/donate)