WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 3 times in this file.
Line | Code |
---|---|
533 | ); |
534 | ?> |
535 | </p> |
536 | <?php |
537 | /** |
538 | * Fires when the site or user sign-up process is complete. |
539 | * |
540 | * @since 3.0.0 |
541 | */ |
542 | do_action( 'signup_finished' ); |
543 | } |
544 |
|
545 | /** |
546 | * Setup the new user signup process |
547 | * |
548 | * @since MU (3.0.0) |
549 | * |
550 | * @param string $user_name The username. |
551 | * @param string $user_email The user's email. |
Line | Code |
669 | <p> |
670 | <?php |
671 | /* translators: %s: email address */ |
672 | printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' ); |
673 | ?> |
674 | </p> |
675 | <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p> |
676 | <?php |
677 | /** This action is documented in wp-signup.php */ |
678 | do_action( 'signup_finished' ); |
679 | } |
680 |
|
681 | /** |
682 | * Setup the new site signup |
683 | * |
684 | * @since MU (3.0.0) |
685 | * |
686 | * @param string $user_name The username. |
687 | * @param string $user_email The user's email address. |
Line | Code |
841 | <?php |
842 | /* translators: %s: email address */ |
843 | printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ); |
844 | ?> |
845 | </li> |
846 | </ul> |
847 | </p> |
848 | <?php |
849 | /** This action is documented in wp-signup.php */ |
850 | do_action( 'signup_finished' ); |
851 | } |
852 |
|
853 | /** |
854 | * Retrieves languages available during the site/user signup process. |
855 | * |
856 | * @since 4.4.0 |
857 | * |
858 | * @see get_available_languages() |
859 | * |