edit_comment_misc_actions
云策文档标注
概述
edit_comment_misc_actions 是一个 WordPress 过滤器,用于自定义编辑评论表单侧边栏中的杂项操作输出。它允许开发者修改或添加 HTML 内容,以增强评论管理界面的功能。
关键要点
- 这是一个过滤器钩子,用于编辑评论表单侧边栏的杂项操作。
- 接受两个参数:$html(字符串,输出 HTML)和 $comment(WP_Comment 对象,当前评论)。
- 首次在 WordPress 4.3.0 版本中引入。
原文内容
Filters miscellaneous actions for the edit comment form sidebar.
Parameters
$htmlstring-
Output HTML to display miscellaneous action.
$commentWP_Comment-
Current comment object.
Source
echo apply_filters( 'edit_comment_misc_actions', '', $comment );
Changelog
| Version | Description |
|---|---|
| 4.3.0 | Introduced. |