get_users_of_blog

函数


get_users_of_blog ( $id = '' )
参数
  • (int)
    $id
    Site ID.
    Required:
    Default: (empty)
返回值
  • (array) List of users that are part of that site ID
相关
  • get_users()
定义位置
  • wp-includes/deprecated.php
    , line 2378
引入
2.2.0
弃用
3.1.0

Get users for the site.

For setups that use the multisite feature. Can be used outside of the
multisite feature.

function get_users_of_blog( $id = '' ) {
	_deprecated_function( __FUNCTION__, '3.1.0', 'get_users()' );

	global $wpdb;
	if ( empty( $id ) ) {
		$id = get_current_blog_id();
	}
	$blog_prefix = $wpdb->get_blog_prefix($id);
	$users = $wpdb->get_results( "SELECT user_id, user_id AS ID, user_login, display_name, user_email, meta_value FROM $wpdb->users, $wpdb->usermeta WHERE {$wpdb->users}.ID = {$wpdb->usermeta}.user_id AND meta_key = '{$blog_prefix}capabilities' ORDER BY {$wpdb->usermeta}.user_id" );
	return $users;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。