bb_pre_merge_tags
The BuddyPress bb pre merge tags hook.
Description
Parameters (2)
- 0. $old_id (unknown)
- The old id.
- 1. $new_id (unknown)
- The new id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_pre_merge_tags', $old_id, $new_id );
- The following example is for adding a hook callback.
- // define the bb_pre_merge_tags callback
- function action_bb_pre_merge_tags( $old_id, $new_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_pre_merge_tags', 'action_bb_pre_merge_tags', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_pre_merge_tags', 'action_bb_pre_merge_tags', 10, 2 );
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_merge_tags', $old_id, $new_id );