comment_moderation_recipients WordPress Filter Hook
The comment_moderation_recipients Wordpress hook allows you to specify who should receive email notifications when a comment is held for moderation. This can be useful if you want to make sure that someone other than the comment author is aware of the comment.
apply_filters( 'comment_moderation_recipients', string[] $emails , int $comment_id ) #
Filters the list of recipients for comment moderation emails.
Parameters
- $emails
(string[])List of email addresses to notify for comment moderation.
- $comment_id
(int)Comment ID.
Source
Changelog
Version | Description |
---|---|
3.7.0 | Introduced. |