Skip to content

Instantly share code, notes, and snippets.

@halferty
Last active August 22, 2018 18:14
Show Gist options
  • Select an option

  • Save halferty/17c1eb02ea312721392fdf30abfec476 to your computer and use it in GitHub Desktop.

Select an option

Save halferty/17c1eb02ea312721392fdf30abfec476 to your computer and use it in GitHub Desktop.
Wordpress grant super admin
<?php
global $super_admins;
$user1 = get_userdata(get_current_user_id());
$super_admins[] = $user->user_login;
update_site_option('site_admins', $super_admins);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment