bb_pre_tag_removed
The BuddyPress bb pre tag removed hook.
Description
Parameters (3)
- 0. $tt_id (unknown)
- The tt id.
- 1. $user_id (unknown)
- The user id.
- 2. $topic_id (unknown)
- The topic id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_pre_tag_removed', $tt_id, $user_id, $topic_id );
- The following example is for adding a hook callback.
- // define the bb_pre_tag_removed callback
- function action_bb_pre_tag_removed( $tt_id, $user_id, $topic_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_pre_tag_removed', 'action_bb_pre_tag_removed', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_pre_tag_removed', 'action_bb_pre_tag_removed', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-topic-tags.php
- do_action('bb_pre_tag_removed', $tt_id, $user_id, $topic_id);