Skip to content

Instantly share code, notes, and snippets.

@trepmal
Created April 4, 2013 19:38
Show Gist options
  • Save trepmal/5313475 to your computer and use it in GitHub Desktop.
Save trepmal/5313475 to your computer and use it in GitHub Desktop.
get usernames from get_users()
<?php
$users = get_users();
$data = wp_list_pluck( $users, 'data' );
$usernames = wp_list_pluck( $data, 'user_login' );
print_r( $usernames );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment