comment_edit_pre
云策文档标注
概述
comment_edit_pre 是一个 WordPress 过滤器,用于在编辑评论内容之前过滤评论内容。它允许开发者在评论内容被编辑前进行修改或处理。
关键要点
- 过滤器名称:comment_edit_pre
- 参数:$comment_content(字符串类型,表示评论内容)
- 用途:在编辑评论内容之前应用过滤器,常用于后台管理界面
- 相关函数:WP_Comments_List_Table::column_comment() 和 get_comment_to_edit()
- 引入版本:WordPress 2.0.0
原文内容
Filters the comment content before editing.
Parameters
$comment_contentstring-
Comment content.
Source
$comment->comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content );
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |