comment_notification_notify_author filter-hook . WP 3.8.0
Filters whether to notify comment authors of their comments on their own posts.
By default, comment authors aren't notified of their comments on their own posts. This filter allows you to override that.
Usage
add_filter( 'comment_notification_notify_author', 'filter_function_name_1772', 10, 2 ); function filter_function_name_1772( $notify, $comment_id ){ // filter... return $notify; }
- $notify(true/false)
- Whether to notify the post author of their own comment.
Default: false - $comment_id(int)
- The comment ID.
Changelog
Since 3.8.0 | Introduced. |
Where the hook is called
comment_notification_notify_author
wp-includes/pluggable.php 1553
$notify_author = apply_filters( 'comment_notification_notify_author', false, $comment->comment_ID );