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 |
---|---|
400 | <?php |
401 | /** |
402 | * Hidden sign-up form fields output when creating another site or user. |
403 | * |
404 | * @since MU (3.0.0) |
405 | * |
406 | * @param string $context A string describing the steps of the sign-up process. The value can be |
407 | * 'create-another-site', 'validate-user', or 'validate-site'. |
408 | */ |
409 | do_action( 'signup_hidden_fields', 'create-another-site' ); |
410 | ?> |
411 | <?php show_blog_form( $blogname, $blog_title, $errors ); ?> |
412 | <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e( 'Create Site' ); ?>" /></p> |
413 | </form> |
414 | <?php |
415 | } |
416 |
|
417 | /** |
418 | * Validates a new site sign-up for an existing user. |
Line | Code |
620 | <?php |
621 | /* translators: %s: Name of the network. */ |
622 | printf( __( 'Get your own %s account in seconds' ), get_network()->site_name ); |
623 | ?> |
624 | </h2> |
625 | <form id="setupform" method="post" action="wp-signup.php" novalidate="novalidate"> |
626 | <input type="hidden" name="stage" value="validate-user-signup" /> |
627 | <?php |
628 | /** This action is documented in wp-signup.php */ |
629 | do_action( 'signup_hidden_fields', 'validate-user' ); |
630 | ?> |
631 | <?php show_user_form( $user_name, $user_email, $errors ); ?> |
632 |
|
633 | <?php if ( 'blog' === $active_signup ) : ?> |
634 | <input id="signupblog" type="hidden" name="signup_for" value="blog" /> |
635 | <?php elseif ( 'user' === $active_signup ) : ?> |
636 | <input id="signupblog" type="hidden" name="signup_for" value="user" /> |
637 | <?php else : ?> |
638 | <fieldset class="signup-options"> |
Line | Code |
765 | $blogname = $user_name; |
766 | } |
767 | ?> |
768 | <form id="setupform" method="post" action="wp-signup.php"> |
769 | <input type="hidden" name="stage" value="validate-blog-signup" /> |
770 | <input type="hidden" name="user_name" value="<?php echo esc_attr( $user_name ); ?>" /> |
771 | <input type="hidden" name="user_email" value="<?php echo esc_attr( $user_email ); ?>" /> |
772 | <?php |
773 | /** This action is documented in wp-signup.php */ |
774 | do_action( 'signup_hidden_fields', 'validate-site' ); |
775 | ?> |
776 | <?php show_blog_form( $blogname, $blog_title, $errors ); ?> |
777 | <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e( 'Sign up' ); ?>" /></p> |
778 | </form> |
779 | <?php |
780 | } |
781 |
|
782 | /** |
783 | * Validates new site signup. |