comment_notification_notify_author filter-hookWP 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', 'wp_kama_comment_notification_notify_author_filter', 10, 2 );

/**
 * Function for `comment_notification_notify_author` filter-hook.
 * 
 * @param bool   $notify     Whether to notify the post author of their own comment.
 * @param string $comment_id The comment ID as a numeric string.
 *
 * @return bool
 */
function wp_kama_comment_notification_notify_author_filter( $notify, $comment_id ){

	// filter...
	return $notify;
}
$notify(true|false)
Whether to notify the post author of their own comment.
Default: false
$comment_id(string)
The comment ID as a numeric string.

Changelog

Since 3.8.0 Introduced.

Where the hook is called

wp_notify_postauthor()
comment_notification_notify_author
wp-includes/pluggable.php 1698
$notify_author = apply_filters( 'comment_notification_notify_author', false, $comment->comment_ID );

Where the hook is used in WordPress

Usage not found.