Skip to content

Instantly share code, notes, and snippets.

@eteubert
Created November 22, 2011 16:30
Show Gist options
  • Select an option

  • Save eteubert/1386092 to your computer and use it in GitHub Desktop.

Select an option

Save eteubert/1386092 to your computer and use it in GitHub Desktop.
WordPress: Allow Site Admins to Manage Users
<?php
function enable_edit_any_user_configuration () {
return true;
}
add_action( 'enable_edit_any_user_configuration', 'enable_edit_any_user_configuration' );
<?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