ClassicPress logo
Skip to content
Filter by type:

Browse:

  • Home
  • Functions
  • confirm_user_signup()

confirm_user_signup( string $user_name, string $user_email )

Shows a message confirming that the new user has been registered and is awaiting activation.


Parameters

$user_name

(Required) The username.

$user_email

(Required) The user's email address.


Source

File: wp-signup.php

function confirm_user_signup($user_name, $user_email) {
	?>
	<h2><?php /* translators: %s: username */
	printf( __( '%s is your new username' ), $user_name) ?></h2>
	<p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
	<p><?php /* translators: %s: email address */
	printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' ); ?></p>
	<p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
	<?php
	/** This action is documented in wp-signup.php */
	do_action( 'signup_finished' );
}

Expand Source Code View on GitHub


Related

Uses

Uses
Uses Description
wp-signup.php: signup_finished

Fires when the site or user sign-up process is complete.

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: validate_user_signup()

Validates the new user sign-up.


Changelog

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