wpmu_log_new_registrations()

wpmu_log_new_registrations( WP_Site|int $blog_id, int|a…

wpmu_log_new_registrations( WP_Site|int $blog_id, int|array $user_id )

记录新站点的用户电子邮件、IP和注册日期。
Logs the user email, IP, and registration date of a new site.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明
$blog_id (WP_Site | int) 新站点的对象或ID。
$user_id (int | array) 用户ID,或包含“User_ID”的参数数组。

源码(Source)

/**
 * Logs user registrations.
 *
 * @since MU
 *
 * @global wpdb $wpdb
 *
 * @param int $blog_id
 * @param int $user_id
 */
function wpmu_log_new_registrations( $blog_id, $user_id ) {
	global $wpdb;
	$user = get_userdata( (int) $user_id );
	if ( $user )
		$wpdb->insert( $wpdb->registration_log, array('email' => $user->user_email, 'IP' => preg_replace( '/[^0-9., ]/', '', wp_unslash( $_SERVER['REMOTE_ADDR'] ) ), 'blog_id' => $blog_id, 'date_registered' => current_time('mysql')) );
}
更新版本 源码位置 使用 被使用
MU (3.0.0) wp-includes/ms-functions.php 20 17
类别:WordPress 函数手册

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

评论 (0)COMMENT

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