refactor: 清理孤立代码

- 删除未使用的邮件模板类型(user_register, password_reset, general)
- 删除 style.css 中未使用的 .shortcode-todo 样式(约30行)
- 保留 todo_urge 邮件类型(有实际使用)
- 减少约 120 行冗余代码
This commit is contained in:
2026-01-23 15:49:46 +08:00
parent f2c807edf0
commit 4712cb469c
3 changed files with 2 additions and 116 deletions

View File

@@ -6404,7 +6404,7 @@ function argon_update_themeoptions(){
update_option('argon_email_social_links', $social_links);
// 保存邮件模板配置
$email_types = array('comment_notify', 'spam_notify', 'reply_notify', 'user_register', 'password_reset', 'todo_urge', 'general');
$email_types = array('comment_notify', 'spam_notify', 'reply_notify', 'todo_urge');
foreach ($email_types as $type) {
// 保存启用状态
argon_update_option_checkbox('argon_email_template_' . $type . '_enabled');