This filter is called just after the comment is added to the post.
Parameters:
- $comment – an array that represents the comment. See this for more information about the data in the $comment array.
- $comment_ID – the id of the comment. Note that this parameter is only available in Postie version 1.9.55 or later.
add_filter('postie_comment_after', 'my_postie_comment_after', 10, 2); function my_postie_comment_after($comment, $comment_ID) { echo "postie_comment_after called<br>\n"; }