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 |
|---|---|
| 380 | <p> |
| 381 | <?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 ) ?> |
| 382 | </p> |
| 383 | <?php |
| 384 | /** |
| 385 | * Fires when the site or user sign-up process is complete. |
| 386 | * |
| 387 | * @since 3.0.0 |
| 388 | */ |
| 389 | do_action( 'signup_finished' ); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Setup the new user signup process |
| 394 | * |
| 395 | * @since MU |
| 396 | * |
| 397 | * @uses apply_filters() filter $filtered_results |
| 398 | * @uses show_user_form() to display the user registration form |
| Line | Code |
| 505 | */ |
| 506 | function confirm_user_signup($user_name, $user_email) { |
| 507 | ?> |
| 508 | <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2> |
| 509 | <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p> |
| 510 | <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p> |
| 511 | <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p> |
| 512 | <?php |
| 513 | /** This action is documented in wp-signup.php */ |
| 514 | do_action( 'signup_finished' ); |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * Setup the new site signup |
| 519 | * |
| 520 | * @since MU |
| 521 | * |
| 522 | * @uses apply_filters() to filter $filtered_results |
| 523 | * @uses show_blog_form() to display the blog signup form |
| Line | Code |
| 650 | <?php _e( 'If you haven’t received your email yet, there are a number of things you can do:' ) ?> |
| 651 | <ul id="noemail-tips"> |
| 652 | <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> |
| 653 | <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li> |
| 654 | <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> |
| 655 | </ul> |
| 656 | </p> |
| 657 | <?php |
| 658 | /** This action is documented in wp-signup.php */ |
| 659 | do_action( 'signup_finished' ); |
| 660 | } |
| 661 | |
| 662 | // Main |
| 663 | $active_signup = get_site_option( 'registration', 'none' ); |
| 664 | /** |
| 665 | * Filter the type of site sign-up. |
| 666 | * |
| 667 | * @since 3.0.0 |
| 668 | * |