bb_post_notify_subscribers
The BuddyPress bb post notify subscribers hook.
Description
Parameters (2)
- 0. $post_id (unknown)
- The post id.
- 1. $topic_id (unknown)
- The topic id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_post_notify_subscribers', $post_id, $topic_id );
- The following example is for adding a hook callback.
- // define the bb_post_notify_subscribers callback
- function action_bb_post_notify_subscribers( $post_id, $topic_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_post_notify_subscribers', 'action_bb_post_notify_subscribers', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_post_notify_subscribers', 'action_bb_post_notify_subscribers', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-posts.php
- do_action( 'bb_post_notify_subscribers', $post_id, $topic_id );