edit_comment_misc_actions WordPress Action Hook
This hook allows you to perform additional actions when a comment is edited. It is called after the comment is updated in the database, but before the comment is re-rendered on the page. This hook can be used to update other parts of your site in response to a comment being edited.
apply_filters( 'edit_comment_misc_actions', string $html , WP_Comment $comment ) #
Filters miscellaneous actions for the edit comment form sidebar.
Contents
Parameters
- $html
(string)Output HTML to display miscellaneous action.
- $comment
(WP_Comment)Current comment object.
Source
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |