sqlwordpressmultisite

Which SQL table contains the users of main site in WordPress multisite?


I'm looking for the SQL table in WordPress Mutlisite which contains all users of it.

User list in WP Multisite

When I click on this number, I get the list of users of main site. Where is the table which contain this info?


Solution

  • 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: