Filters whether to send the site moderator email notifications, overriding the site setting.
$maybe_notifybool$comment_idintwp-includes/comment.php:2453wp_new_comment_notify_moderator()wp-includes/pluggable.php:2018wp_notify_moderator() * * @since 4.4.0 * * @param bool $maybe_notify Whether to notify blog moderator. * @param int $comment_id The ID of the comment for the notification. */ $maybe_notify = apply_filters( 'notify_moderator', $maybe_notify, $comment_id ); if ( ! $maybe_notify ) { return true; } $comment = get_comment( $comment_id );Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.