Summery Summery
Get unapproved comment author’s email.
Syntax Syntax
Description Description
Used to allow the commenter to see their pending comment.
Return Return
(string) The unapproved comment author's email (when supplied).
Source Source
File: wp-includes/comment.php
* * The dynamic portions of the hook name, `$new_status`, and `$comment->comment_type`, * refer to the new comment status, and the type of comment, respectively. * * Typical comment types include an empty string (standard comment), 'pingback', * or 'trackback'. * * @since 2.7.0 * * @param int $comment_ID The comment ID. * @param WP_Comment $comment Comment object. */ do_action( "comment_{$new_status}_{$comment->comment_type}", $comment->comment_ID, $comment ); } /** * Clear the lastcommentmodified cached value when a comment status is changed. * * Deletes the lastcommentmodified cache key when a comment enters or leaves
Advertisement
Changelog Changelog
Version | Description |
---|---|
5.1.0 | Introduced. |