bp_get_signup_avatar_dir_value
Filters the avatar dir used during signup.
Description
Parameters (1)
- 0. $signup_avatar_dir (string|bool)
- Avatar dir used during signup or false.
Usage
- To run the hook, copy the example below.
- $signup_avatar_dir = apply_filters( 'bp_get_signup_avatar_dir_value', $signup_avatar_dir );
- if ( !empty( $signup_avatar_dir ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_signup_avatar_dir_value callback
- function filter_bp_get_signup_avatar_dir_value( $signup_avatar_dir ) {
- // make filter magic happen here...
- return $signup_avatar_dir;
- };
- // add the filter
- add_filter( 'bp_get_signup_avatar_dir_value', 'filter_bp_get_signup_avatar_dir_value', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_signup_avatar_dir_value', 'filter_bp_get_signup_avatar_dir_value', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-members/bp-members-template.php
- return apply_filters( 'bp_get_signup_avatar_dir_value', $signup_avatar_dir );