Add comment_meta to wp_comment_reply
Considering WP hooks capabilities the only way to set extra content here is to reorganize reply/edit form itself, using hooks. An example below demonstrates how to add extra HTML content on “reply” form. Find out “HERE IS YOUR CUSTOM CONTENT” label inside code to check where magic happens. add_filter(‘wp_comment_reply’, ‘test_reply_comment_func’, 10, 2); function test_reply_comment_func($str, $input) … Read more