Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: register_form

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

Line Code
825           <label for="user_email"><?php _e( 'Email' ); ?><br />
826           <input type="email" name="user_email" id="user_email" class="input" value="<?php echo esc_attr( wp_unslash( $user_email ) ); ?>" size="25" /></label>
827      </p>
828           <?php
829           /**
830            * Fires following the 'Email' field in the user registration form.
831            *
832            * @since 2.1.0
833            */
834           do_action( 'register_form' );
835           ?>
836      <p id="reg_passmail"><?php _e( 'Registration confirmation will be emailed to you.' ); ?></p>
837      <br class="clear" />
838      <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
839      <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e( 'Register' ); ?>" /></p>
840      </form>
841
842      <p id="nav">
843      <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>