Blue Cube Content Feedback
开发者 |
thebluecube
|
更新时间 |
2016年10月11日 21:58 |
PHP版本: |
4.5 及以上 |
WordPress版本: |
4.5 |
版权: |
GPLv2 or later |
版权网址: |
版权信息
|
详情介绍:
Sometimes you need to know whether users of your website find the content useful or not. This plugin provides an easy YES / NO feedback system for your website content. Users would only need to click on a 'Yes' or 'No' button, simple as that!
To disable the widget on any specific pages, you can use the 'bc_show_content_feedback_widget' filter like this:
add_filter('bc_show_content_feedback_widget', 'turn_off_content_feedback_widget'); function turn_off_content_feedback_widget($show_widget) { global $post; if ($post->ID == 198) { $show_widget = false; } return $show_widget; }
安装:
Download and unzip the plugin. Then upload the "bluecube-content-feedback"
folder to the /wp-content/plugins/
directory (or the relevant directory if your WordPress file structure is different), or you can simply install it using WordPress plugin installer.
更新日志:
1.0
- This is the first version of the plugin, providing a very simple content feedback system