get_users_of_blog()WP 2.2.0

Устарела с версии 3.1.0. Больше не поддерживается и может быть удалена. Используйте get_users().

Get users for the site.

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

Хуков нет.

Возвращает

Массив. List of users that are part of that site ID

Использование

get_users_of_blog( $id );
$id(int)
Site ID.
По умолчанию: ''

Заметки

  • Смотрите: get_users()
  • Global. wpdb. $wpdb WordPress database abstraction object.

Список изменений

С версии 2.2.0 Введена.
Устарела с 3.1.0 Use get_users()

Код get_users_of_blog() WP 6.5.2

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