newuser_notify_siteadmin

newuser_notify_siteadmin钩子是Wordpress钩子,筛选挂钩:筛选发送给网络管理员的新用户激活电子邮件的邮件正文。

apply_filters( ‘newuser_notify_siteadmin’, string $msg, WP_User $user )

参数(Parameters)

参数类型说明
$msg(string)电子邮件正文。
$user(WP_User)新用户的WP_用户实例。

源码(Source)

/**
 * Notifies the network admin that a new user has been activated.
 *
 * Filter 'newuser_notify_siteadmin' to change the content of
 * the notification email.
 *
 * @since MU
 *
 * @param int $user_id The new user's ID.
 * @return bool
 */
function newuser_notify_siteadmin( $user_id ) {
	if ( get_site_option( 'registrationnotification' ) != 'yes' )
		return false;
	$email = get_site_option( 'admin_email' );
	if ( is_email($email) == false )
		return false;
	$user = get_userdata( $user_id );
	$options_site_url = esc_url(network_admin_url('settings.php'));
	$msg = sprintf(__('New User: %1$s
Remote IP: %2$s
Disable these notifications: %3$s'), $user->user_login, wp_unslash( $_SERVER['REMOTE_ADDR'] ), $options_site_url);
	/**
	 * Filter the message body of the new user activation email sent
	 * to the network administrator.
	 *
	 * @since MU
	 *
	 * @param string  $msg  Email body.
	 * @param WP_User $user WP_User instance of the new user.
	 */
	$msg = apply_filters( 'newuser_notify_siteadmin', $msg, $user );
	wp_mail( $email, sprintf(__('New User Registration: %s'), $user->user_login), $msg );
	return true;
}
更新版本源码位置使用被使用
MU (3.0.0)wp-includes/ms-functions.php:149710
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索