newuser_notify_siteadmin()

newuser_notify_siteadmin( int $user_id ) 通知网络管理员新用户已激活。…

newuser_notify_siteadmin( int $user_id )

通知网络管理员新用户已激活。
Notifies the network admin that a new user has been activated.

目录锚点:#说明#参数#返回#源码


说明(Description)

筛选“newuser_notify_siteadmin”以更改通知电子邮件的内容。


参数(Parameters)

参数 类型 必填 说明
$user_id (int) 必需 新用户的ID。

返回(Return)

(bool)


源码(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:1460 0 10
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册