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.

Top ↑

Source

File: wp-includes/comment.php. View all references

$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_id );


Top ↑

Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.