add_existing_user_to_blog() WP 3.0.0
Add a user to a blog based on details from maybe_add_existing_user_to_blog().
Хуки из функции
Возвращает
true/WP_Error/null. True on success or a WP_Error object if the user doesn't exist or could not be added. Void if $details array was not provided.
Использование
add_existing_user_to_blog( $details );
- $details(массив)
User details. Must at least contain values for the keys listed below.
-
user_id(число)
The ID of the user being added to the current blog. - role(строка)
The role to be assigned to the user.
-
Список изменений
С версии 3.0.0 | Введена. |
Код add_existing_user_to_blog() add existing user to blog WP 5.6.2
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 true|WP_Error $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;
}
}