confirm_user_signup()WP 3.0.0

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

Хуки из функции

Возвращает

null. Ничего (null).

Использование

confirm_user_signup( $user_name, $user_email );
$user_name(строка) (обязательный)
The username.
$user_email(строка) (обязательный)
The user's email address.

Список изменений

С версии 3.0.0 Введена.

Код confirm_user_signup() WP 6.5.2

<?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: The user email address. */
	printf( __( 'Check your inbox at %s and click on the given link.' ), '<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' );
}