apply_filters( 'notify_moderator', bool $maybe_notify, int $comment_id )
- Since
- 4.4.0
Filters whether to send the site moderator email notifications, overriding the site setting.
Compatibility
- WordPress
- since 4.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$maybe_notifybool- Whether to notify blog moderator.
$comment_idint- The ID of the comment for the notification.
Where this hook fires · 2
wp-includes/comment.php:2511wp_new_comment_notify_moderator()wp-includes/pluggable.php:2022wp_notify_moderator()
Source code
* * @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 );Changelog
Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.