根据maybe_add_existing_user_to_blog()中的详细信息将用户添加到博客。
原型
add_existing_user_to_blog( array $details = false )
参数
$details
(array)
(Optional)
返回值
(true|WP_Error|void)
源文件
路径:wp-includes/ms-functions.php
<?php
...
function add_existing_user_to_blog( $details = false ) {
if ( is_array( $details ) ) {
$blog_id = get_current_blog_id();
$result = add_user_to_blog( $blog_id, $details[ 'user_id' ], $details[ 'role' ] );
/**
* Fires immediately after an existing user is added to a site.
*
* @since MU (3.0.0)
*
* @param int $user_id User ID.
* @param mixed $result True on success or a WP_Error object if the user doesn't exist
* or could not be added.
*/
do_action( 'added_existing_user', $details['user_id'], $result );
return $result;
}
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/add_existing_user_to_blog/