bb_user_login
The BuddyPress bb user login hook.
Description
Parameters (1)
- 0. $int_user_id (int) =>
(int) $user->ID
- The int user id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_user_login', $int_user_id );
- The following example is for adding a hook callback.
- // define the bb_user_login callback
- function action_bb_user_login( $int_user_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_user_login', 'action_bb_user_login', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_user_login', 'action_bb_user_login', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-pluggable.php
- do_action('bb_user_login', (int) $user->ID );