ClassicPress logo
Skip to content
Filter by type:

Browse:

  • Home
  • Functions
  • show_user_form()

show_user_form( string $user_name = '', string $user_email = '', WP_Error|string $errors = '' )

Displays the fields for the new user account registration form.


Parameters

$user_name

(Optional) The entered username.

Default value: ''

$user_email

(Optional) The entered email address.

Default value: ''

$errors

(Optional) A WP_Error object containing existing errors. Defaults to empty string.

Default value: ''


Source

File: wp-signup.php

function show_user_form($user_name = '', $user_email = '', $errors = '') {
	if ( ! is_wp_error( $errors ) ) {
		$errors = new WP_Error();
	}

	// User name
	echo '<label for="user_name">' . __('Username:') . '</label>';
	if ( $errmsg = $errors->get_error_message('user_name') ) {
		echo '<p class="error">'.$errmsg.'</p>';
	}
	echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr( $user_name ) .'" autocapitalize="none" autocorrect="off" maxlength="60" /><br />';
	_e( '(Must be at least 4 characters, letters and numbers only.)' );
	?>

	<label for="user_email"><?php _e( 'Email&nbsp;Address:' ) ?></label>
	<?php if ( $errmsg = $errors->get_error_message('user_email') ) { ?>
		<p class="error"><?php echo $errmsg ?></p>
	<?php } ?>
	<input name="user_email" type="email" id="user_email" value="<?php  echo esc_attr($user_email) ?>" maxlength="200" /><br /><?php _e('We send your registration email to this address. (Double-check your email address before continuing.)') ?>
	<?php
	if ( $errmsg = $errors->get_error_message('generic') ) {
		echo '<p class="error">' . $errmsg . '</p>';
	}
	/**
	 * Fires at the end of the user registration form on the site sign-up form.
	 *
	 * @since WP-3.0.0
	 *
	 * @param WP_Error $errors A WP_Error object containing 'user_name' or 'user_email' errors.
	 */
	do_action( 'signup_extra_fields', $errors );
}

Expand Source Code View on GitHub


Related

Uses

Uses
Uses Description
wp-signup.php: signup_extra_fields

Fires at the end of the new user account registration form.

wp-includes/plugin.php: do_action()

Calls the callback functions that have been added to an action hook.

Used By

Used By
Used By Description
wp-signup.php: signup_user()

Shows a form for a visitor to sign up for a new user account.


Changelog

Changelog
Version Description
MU (3.0.0) Introduced. MU (3.0.0)
ClassicPress Documentation • Made with ClassicPress
Privacy Policy