本次更新要求评论操作登录后进行,未登录用户点击发送评论或互动按钮时会弹出登录窗口。
评论区新增发布时间、24 小时内编辑、5 分钟内撤回、点赞点踩和按赞数排序;普通用户不能在超过撤回时间后自行删除评论。
修改源码
// Comment permissions are enforced server-side.
add_filter('preprocess_comment', array(__CLASS__, 'require_login_for_frontend_comment'));
add_filter('comments_array', array(__CLASS__, 'sort_comments_by_votes'), 20, 2);
add_action('wp_ajax_cucu_comment_vote', array(__CLASS__, 'ajax_comment_vote'));
add_action('wp_ajax_cucu_comment_edit', array(__CLASS__, 'ajax_comment_edit'));
add_action('wp_ajax_cucu_comment_withdraw', array(__CLASS__, 'ajax_comment_withdraw'));
/* Comment action controls and login modal. */
.cucu-comment-actions button{border-radius:999px;font-weight:700}
.cucu-comment-login-modal.is-open,.cucu-comment-edit-modal.is-open{display:flex}