edit_comment_misc_actions filter-hook . WP 4.3.0
Filters miscellaneous actions for the edit comment form sidebar.
Usage
add_filter( 'edit_comment_misc_actions', 'filter_function_name_6364', 10, 2 ); function filter_function_name_6364( $html, $comment ){ // filter... return $html; }
- $html(string)
- Output HTML to display miscellaneous action.
- $comment(WP_Comment)
- Current comment object.
Changelog
Since 4.3.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-form-comment.php
wp-admin/edit-form-comment.php 196
echo apply_filters( 'edit_comment_misc_actions', '', $comment );