bbp_template_before_user_profile
User Profile.
Description
do_action( 'bbp_template_before_user_profile' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bbp_template_before_user_profile' );
- The following example is for adding a hook callback.
- // define the bbp_template_before_user_profile callback
- function action_bbp_template_before_user_profile( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bbp_template_before_user_profile', 'action_bbp_template_before_user_profile', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bbp_template_before_user_profile', 'action_bbp_template_before_user_profile', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bbpress/user-profile.php
- do_action('bbp_template_before_user_profile');