I had to switch around my Super Admins. I did it through the MySQL tables directly.
I now have 1 official Super Admin for my network (which is what I want & need) but WordPress shows that I have 2 Super Admins:
All (71) | Super Admins (2)
Where does WP store the SA count or the list of SA’s?
It’s stored in the main site options table, under the “site_admins” key.
Edit: As pointed out in the comments, the “site options” table in multisite is actually named PREFIX_sitemeta, like “wp_sitemeta”. It’s referred to as a site option internally, like
get_site_option('site_admins')
.To adjust this without editing the database content directly, you could do this:
On SQL level, you can find in
site_admins
key inwp_sitemeta
table. Check themeta_value
key for find out who is Super Admin in your installation.