signup_user_init
Filters the default user variables used on the user sign-up form.
Description
Parameters (1)
- 0. $signup_user_defaults (array)
Usage
- To run the hook, copy the example below.
- $signup_user_defaults = apply_filters( 'signup_user_init', $signup_user_defaults );
- if ( !empty( $signup_user_defaults ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the signup_user_init callback
- function filter_signup_user_init( $signup_user_defaults ) {
- // make filter magic happen here...
- return $signup_user_defaults;
- };
- // add the filter
- add_filter( 'signup_user_init', 'filter_signup_user_init', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'signup_user_init', 'filter_signup_user_init', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-signup.php
- $filtered_results = apply_filters( 'signup_user_init', $signup_user_defaults );