add_existing_user_to_blog

函数
add_existing_user_to_blog ( $details = false )
参数
  • (array|false) $details { User details. Must at least contain values for the keys listed below. @type int $user_id The ID of the user being added to the current blog. @type string $role The role to be assigned to the user. }
    Required:
    Default: false
返回值
  • (true|WP_Error|void) 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.
定义位置
相关方法
maybe_add_existing_user_to_blogadd_new_user_to_blogadd_user_to_blogget_users_of_blogadd_settings_section
引入
-
弃用
-

add_existing_user_to_blog: 这个函数用来添加一个现有的用户到WordPress的博客中: 该函数需要两个参数:用户ID和用户的角色。

根据may_add_existing_user_to_blog()的细节,将一个用户添加到博客中。

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;
	}
}

常见问题

FAQs
查看更多 >
闪电侠

(工作日 10:00 - 18:30 为您服务)

2025-12-05 18:32:58

您好,无论是售前、售后、意见建议……均可通过联系工单与我们取得联系。

您也可选择聊天工具与我们即时沟通或点击查看:

您的工单我们已经收到,我们将会尽快跟您联系!
取消
选择聊天工具: