I'm looking for the SQL table in WordPress Mutlisite which contains all users of it.
When I click on this number, I get the list of users of main site. Where is the table which contain this info?
This information is spread over tables wp_users
and wp_usermeta
.
wp_users
contains basic information such as the user login, email, registered datetime and status.
The rest of the information is available in wp_usermeta
, that uses the classic key/value format of Wordpress.
References: