wpDiscuz 7 API Documentation

⌘K
  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentat...
  4. Actions
  5. wpdiscuz_notify_comment_subscribers

wpdiscuz_notify_comment_subscribers

This hook can be used for making some actions after sending the email notification to the subscriber who has subscribed to the current comment.

Parameters

1. $parentCommentId (type: int) – parent comment ID
2. $commentId (type: int) – comment ID
3. $subscriberUserId (type: int) – the ID of the subscribed user
4. $subscriberEmail (type: string) – the email address of the subscriber

Usage

add_action("wpdiscuz_notify_comment_subscribers", function ($parentCommentId, $newCommentId, $subscriberUserId, $subscriberEmail) {
    update_comment_meta($parentCommentId, "comment_subscribers_notified_for_" . $newCommentId, 1);
}, 10, 4);

Changelog

since 7.0.0 version