Multisite – enable duo for super admins
-
I didn’t see a way for this plugin to require all super admins to be prompted for duo on login.
There’s a simple php fix you can do to enforce this.
Edit your duo_wordpress.php file, find line 191 which should read:
if(empty($user->roles)) { return true; }
Right after those lines, add the following:
if (is_super_admin() ) { return true; }
Save the file, and now anyone who is a superadmin will be required to login with Duo.
- The topic ‘Multisite – enable duo for super admins’ is closed to new replies.