v1.9 — 评论区优化

- 评论列表自定义渲染(头像 22px,回复按钮中文化)
- 回复表单标题中文化('回复 %s' / '取消回复')
- 去掉 'X条留言' 标题,使用'笺下留言'
- 登录弹窗替代 alert
- 退出登录+登录带回跳
This commit is contained in:
2026-05-04 13:46:15 +08:00
parent f09f3bbfef
commit fef6379522
3 changed files with 34 additions and 35 deletions
+9
View File
@@ -272,3 +272,12 @@ add_filter('comment_post_redirect', function($loc, $comment) {
// 中国时区
date_default_timezone_set('Asia/Shanghai');
// 评论回复标题中文化
add_filter('comment_form_defaults', function($defaults) {
$defaults['title_reply_to'] = '回复 %s';
$defaults['cancel_reply_link'] = '取消回复';
$defaults['title_reply_before'] = '<h3 class="comment-reply-title">';
$defaults['title_reply_after'] = '</h3>';
return $defaults;
});