signup_finished
Fires when the site or user sign-up process is complete.
Description
do_action( 'signup_finished' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'signup_finished' );
- The following example is for adding a hook callback.
- // define the signup_finished callback
- function action_signup_finished( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'signup_finished', 'action_signup_finished', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'signup_finished', 'action_signup_finished', 10, 0 );
Defined (3)
The action is defined in the following location(s).
- /wp-signup.php
- do_action( 'signup_finished' );
- do_action( 'signup_finished' );
- do_action( 'signup_finished' );