Codex tools: Log in
wp-includes/deprecated.php.
Use any of these functions instead.Contents |
Returns an array filled with information about the blog's users.
<?php $blogusers = get_users_of_blog(); ?>
// Get information about this blog's users into an array.
$blogusers = get_users_of_blog();
// Iterate over the array and retrieve that users' basic information.
foreach ($blogusers as $usr) {
print "{$usr->user_login} has user ID number {$usr->ID}.";
}
None.
get_users_of_blog() is located in wp-includes/deprecated.php.