notify_post_author WordPress Filter Hook
The notify_post_author hook is triggered when a new post is published. It allows you to notify the post author about the new post.
apply_filters( 'notify_post_author',  bool $maybe_notify ,  int $comment_ID  ) #
Filters whether to send the post author new comment notification emails, overriding the site setting.
Parameters
- $maybe_notify
- (bool)Whether to notify the post author about the new comment. 
- $comment_ID
- (int)The ID of the comment for the notification. 
Source
File: wp-includes/comment.php
Changelog
| Version | Description | 
|---|---|
| 4.4.0 | Introduced. |