Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: signup_hidden_fields

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 3 times in this file.

Line Code
331           <?php
332           /**
333            * Hidden sign-up form fields output when creating another site or user.
334            *
335            * @since MU (3.0.0)
336            *
337            * @param string $context A string describing the steps of the sign-up process. The value can be
338            *                        'create-another-site', 'validate-user', or 'validate-site'.
339            */
340           do_action( 'signup_hidden_fields', 'create-another-site' );
341           ?>
342           <?php show_blog_form($blogname, $blog_title, $errors); ?>
343           <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e( 'Create Site' ) ?>" /></p>
344      </form>
345      <?php
346 }
347
348 /**
349  * Validate a new site signup.
 
Line Code
535
536      <h2><?php
537           /* translators: %s: name of the network */
538           printf( __( 'Get your own %s account in seconds' ), get_network()->site_name );
539      ?></h2>
540      <form id="setupform" method="post" action="wp-signup.php" novalidate="novalidate">
541           <input type="hidden" name="stage" value="validate-user-signup" />
542           <?php
543           /** This action is documented in wp-signup.php */
544           do_action( 'signup_hidden_fields', 'validate-user' );
545           ?>
546           <?php show_user_form($user_name, $user_email, $errors); ?>
547
548           <p>
549           <?php if ( $active_signup == 'blog' ) { ?>
550                <input id="signupblog" type="hidden" name="signup_for" value="blog" />
551           <?php } elseif ( $active_signup == 'user' ) { ?>
552                <input id="signupblog" type="hidden" name="signup_for" value="user" />
553           <?php } else { ?>
 
Line Code
664      if ( empty($blogname) )
665           $blogname = $user_name;
666      ?>
667      <form id="setupform" method="post" action="wp-signup.php">
668           <input type="hidden" name="stage" value="validate-blog-signup" />
669           <input type="hidden" name="user_name" value="<?php echo esc_attr($user_name) ?>" />
670           <input type="hidden" name="user_email" value="<?php echo esc_attr($user_email) ?>" />
671           <?php
672           /** This action is documented in wp-signup.php */
673           do_action( 'signup_hidden_fields', 'validate-site' );
674           ?>
675           <?php show_blog_form($blogname, $blog_title, $errors); ?>
676           <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e('Signup') ?>" /></p>
677      </form>
678      <?php
679 }
680
681 /**
682  * Validate new site signup