This function has been deprecated. bbPress (r5412) instead.
bbp_notify_subscribers( int $reply_id, int $topic_id, int $forum_id, mixed $anonymous_data = false, int $reply_author )
Sends notification emails for new replies to subscribed topics
Description
This function is deprecated. Please use: bbp_notify_topic_subscribers()
Parameters
- $reply_id
-
(Required) ID of the newly made reply
- $topic_id
-
(Required) ID of the topic of the reply
- $forum_id
-
(Required) ID of the forum of the reply
- $anonymous_data
-
(Optional) Array of anonymous user data
Default value: false
- $reply_author
-
(Required) ID of the topic author ID
Return
(bool) True on success, false on failure
Source
File: bp-forums/common/functions.php
function bbp_notify_subscribers( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = false, $reply_author = 0 ) { return bbp_notify_topic_subscribers( $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author ); }
Changelog
Version | Description |
---|---|
bbPress (r2668) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.