Warning: This function has been deprecated. bbPress (r5412) instead.
bbp_notify_subscribers( int $reply_id, int $topic_id, int $forum_id, array $anonymous_data = array(), int $reply_author )
Sends notification emails for new replies to subscribed topics
Description Description
This function is deprecated. Please use: bbp_notify_topic_subscribers()
Parameters 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) - if it's an anonymous post. Do not supply if supplying $author_id. Should be sanitized (see bbp_filter_anonymous_post_data()
Default value: array()
- $reply_author
-
(Optional) ID of the topic author ID
Return Return
(bool) True on success, false on failure
Source Source
File: includes/common/functions.php
function bbp_notify_subscribers( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = array(), $reply_author = 0 ) { return bbp_notify_topic_subscribers( $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | bbPress (r5412) |
2.0.0 | Introduced. |