confirm_user_signup

函式
confirm_user_signup ( $user_name, $user_email )
引數
  • (string) $user_name The username.
    Required:
  • (string) $user_email The user's email address.
    Required:
定義位置
相關方法
confirm_blog_signupconfirm_another_blog_signupconfirm_delete_usersvalidate_user_signupcount_users
引入
-
棄用
-

confirm_user_signup: 當一個使用者試圖註冊一個WordPress網站時,這個函式被呼叫。它顯示一個確認螢幕,提示使用者確認他們的電子郵件地址並同意服務條款。

顯示一條訊息,確認新使用者已註冊並正在等待啟用。

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' );
}

常見問題

FAQs
檢視更多 >