[wordpress插件] Blue Cube Content FeedbackBlue Cube内容反馈

wordpress 插件 文章 2020-03-07 22:50 493 0 全屏看文

AI助手支持GPT4.0

评分
0
描述

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:

要在任何特定页面上禁用小部件,可以使用“ bc_show_content_feedback_widget”过滤器,如下所示:

add_filter('bc_show_content_feedback_widget', 'turn_off_content_feedback_widget');

  add_filter('bc_show_content_feedback_widget','turn_off_content_feedback_widget');

function turn_off_content_feedback_widget($show_widget) { global $post;

函数turn_off_content_feedback_widget($ show_widget){全局$ post;

if ($post->ID == 198) { $show_widget = false;

如果($ post-> ID == 198){$ show_widget = false;

} return $show_widget;

}返回$ 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

然后将“ bluecube-content-feedback” 文件夹上载到 / wp-content / plugins / 目录(如果您的WordPress文件结构不同,则上传到相关目录),或者

you can simply install it using WordPress plugin installer.

您只需使用WordPress插件安装程序进行安装即可。

下载地址
https://downloads.wordpress.org/plugin/bluecube-content-feedback.1.0.zip
-EOF-

AI助手支持GPT4.0