Created
November 22, 2011 16:30
-
-
Save eteubert/1386092 to your computer and use it in GitHub Desktop.
WordPress: Allow Site Admins to Manage Users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function enable_edit_any_user_configuration () { | |
| return true; | |
| } | |
| add_action( 'enable_edit_any_user_configuration', 'enable_edit_any_user_configuration' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'enable_edit_any_user_configuration', function () { return true; } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment