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 |
|---|---|
| 375 | <p> |
| 376 | <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site. <a href="%3$s">Log in</a> as “%4$s” using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name ) ?> |
| 377 | </p> |
| 378 | <?php |
| 379 | /** |
| 380 | * Fires when the site or user sign-up process is complete. |
| 381 | * |
| 382 | * @since 3.0.0 |
| 383 | */ |
| 384 | do_action( 'signup_finished' ); |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Setup the new user signup process |
| 389 | * |
| 390 | * @since MU |
| 391 | * |
| 392 | * @param string $user_name The username |
| 393 | * @param string $user_email The user's email |
| Line | Code |
| 495 | */ |
| 496 | function confirm_user_signup($user_name, $user_email) { |
| 497 | ?> |
| 498 | <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2> |
| 499 | <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p> |
| 500 | <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p> |
| 501 | <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p> |
| 502 | <?php |
| 503 | /** This action is documented in wp-signup.php */ |
| 504 | do_action( 'signup_finished' ); |
| 505 | } |
| 506 | |
| 507 | /** |
| 508 | * Setup the new site signup |
| 509 | * |
| 510 | * @since MU |
| 511 | * |
| 512 | * @param string $user_name The username |
| 513 | * @param string $user_email The user's email address |
| Line | Code |
| 633 | <?php _e( 'If you haven’t received your email yet, there are a number of things you can do:' ) ?> |
| 634 | <ul id="noemail-tips"> |
| 635 | <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li> |
| 636 | <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li> |
| 637 | <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ) ?></li> |
| 638 | </ul> |
| 639 | </p> |
| 640 | <?php |
| 641 | /** This action is documented in wp-signup.php */ |
| 642 | do_action( 'signup_finished' ); |
| 643 | } |
| 644 | |
| 645 | // Main |
| 646 | $active_signup = get_site_option( 'registration', 'none' ); |
| 647 | /** |
| 648 | * Filter the type of site sign-up. |
| 649 | * |
| 650 | * @since 3.0.0 |
| 651 | * |