函数原型
confirm_user_signup( string $user_name, string $user_email )
函数描述
Shows a message confirming that the new user has been registered and is awaiting activation.
是否弃用
未弃用
函数参数
-
$user_name
string
Required - The username.
-
$user_email
string
Required - The user’s email address.
函数返回值
无
函数位置
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' );
}
源码链接
变更日志
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |

