new_user_email_admin_notice

函数
new_user_email_admin_notice ( No parameters )

new_user_email_admin_notice: 这个动作钩子在一个新的用户账户被创建后被触发,并向网站管理员发送通知邮件。

添加一个管理员通知,提醒用户在电子邮件地址变更后检查确认请求邮件。

function new_user_email_admin_notice() {
	global $pagenow;

	if ( 'profile.php' === $pagenow && isset( $_GET['updated'] ) ) {
		$email = get_user_meta( get_current_user_id(), '_new_email', true );
		if ( $email ) {
			/* translators: %s: New email address. */
			echo '<div class="notice notice-info"><p>' . sprintf( __( 'Your email address has not been updated yet. Please check your inbox at %s for a confirmation email.' ), '<code>' . esc_html( $email['newemail'] ) . '</code>' ) . '</p></div>';
		}
	}
}

常见问题

FAQs
查看更多 >