功能简介
-
一级私密评论(用户A发)
可见:文章作者、用户A、网站管理员
其他人:只显示此条评论仅作者与评论相关用户可见 -
私密回复(A 与 B)
可见:文章作者、网站管理员、用户A、用户B
其他人:同样只显示提示文案 -
样式美化
- 私密按钮增加了小锁图标
- 可见的私密评论标签也增加小锁图标
- 不可见时提示前也带小锁“私密”标识
-
后台
评论列表现在会多一个:私密状态
效果:
- 私密评论:显示带小锁的
私密标签 - 普通评论:显示
—
-
. 后台评论列表支持按“私密评论”筛选
我在后台评论页加了一个筛选下拉:
全部评论仅私密评论仅普通评论
进入 WordPress 后台
评论页面就能看到。 - 增加对论坛帖子页面的评论区支持。
功能实现
主题添加对应的钩子
一共有两个地方需要修改:
- zibll\template\comments.php
- zibll\inc\functions\bbs\inc\comment.php
do_action('zib_comment_tools_left', $post_id, $user_id);

/**
* @description: 获取回复模块编辑器扩展按钮
* @param {*}
* @return {*}
*/
function zib_bbs_get_respond_btns()
{
global $post;
$html = '';
ob_start();
do_action('zib_comment_tools_left', $post->ID, get_current_user_id());
$html .= (string) ob_get_clean();
if (_pz('bbs_comment_smilie', true)) {
$html .= zib_get_input_expand_but('smilie');
}
if (_pz('bbs_comment_code', true)) {
$html .= zib_get_input_expand_but('code');
}
if (_pz('bbs_comment_img', true)) {
$html .= zib_get_input_expand_but('image', _pz('bbs_comment_upload_img', false), 'comment');
}
if (_pz('bbs_comment_quick_s', true)) {
$html .= zib_get_input_expand_but('quick', _pz('bbs_comment_quick_often'), 'comment');
}
return $html;
}
这一块代码直接替换掉

上传插件
最后效果

更新日志:
1.6.1:优化了移动端布局。
© 版权声明
THE END







- 最新
- 最热
只看作者