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 |
---|---|
374 | <p> |
375 | <?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 ) ?> |
376 | </p> |
377 | <?php |
378 | /** |
379 | * Fires when the site or user sign-up process is complete. |
380 | * |
381 | * @since 3.0.0 |
382 | */ |
383 | do_action( 'signup_finished' ); |
384 | } |
385 |
|
386 | /** |
387 | * Setup the new user signup process |
388 | * |
389 | * @since MU |
390 | * |
391 | * @uses apply_filters() filter $filtered_results |
392 | * @uses show_user_form() to display the user registration form |
Line | Code |
497 | */ |
498 | function confirm_user_signup($user_name, $user_email) { |
499 | ?> |
500 | <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2> |
501 | <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p> |
502 | <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p> |
503 | <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p> |
504 | <?php |
505 | /** This action is documented in wp-signup.php */ |
506 | do_action( 'signup_finished' ); |
507 | } |
508 |
|
509 | /** |
510 | * Setup the new site signup |
511 | * |
512 | * @since MU |
513 | * |
514 | * @uses apply_filters() to filter $filtered_results |
515 | * @uses show_blog_form() to display the blog signup form |
Line | Code |
636 | <?php _e( 'If you haven’t received your email yet, there are a number of things you can do:' ) ?> |
637 | <ul id="noemail-tips"> |
638 | <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> |
639 | <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li> |
640 | <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> |
641 | </ul> |
642 | </p> |
643 | <?php |
644 | /** This action is documented in wp-signup.php */ |
645 | do_action( 'signup_finished' ); |
646 | } |
647 |
|
648 | // Main |
649 | $active_signup = get_site_option( 'registration', 'none' ); |
650 | /** |
651 | * Filter the type of site sign-up. |
652 | * |
653 | * @since 3.0.0 |
654 | * |