Created
February 11, 2012 21:51
-
-
Save chrisguitarguy/1804462 to your computer and use it in GitHub Desktop.
Allow users with the role editor to add users to WordPress -- but only subscribers.
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 | |
/* | |
Plugin Name: Editors Add Users | |
Description: Allow editors to add user roles | |
Author: Christopher Davis | |
Author URI: http://www.christopherguitar.me | |
License: GPL2 | |
*/ | |
register_activation_hook( __FILE__, 'wpse42003_activation' ); | |
function wpse42003_activation() | |
{ | |
foreach( array( 'editor', 'your_custome_role' ) as $r ) | |
{ | |
$role = get_role( $r ); | |
if( $role ) | |
$role->add_cap( 'create_users' ); | |
} | |
} | |
register_deactivation_hook( __FILE__, 'wpse42003_deactivation' ); | |
function wpse42003_deactivation() | |
{ | |
foreach( array( 'editor', 'your_custome_role' ) as $r ) | |
{ | |
$role = get_role( $r ); | |
if( $role ) | |
$role->remove_cap( 'create_users' ); | |
} | |
} | |
add_filter( 'editable_roles', 'wpse42003_filter_roles' ); | |
function wpse42003_filter_roles( $roles ) | |
{ | |
$user = wp_get_current_user(); | |
if( in_array( 'editor', $user->roles ) || in_array( 'your_custom_role', $user->roles ) ) | |
{ | |
$tmp = array_keys( $roles ); | |
foreach( $tmp as $r ) | |
{ | |
if( 'subscriber' == $r ) continue; | |
unset( $roles[$r] ); | |
} | |
} | |
return $roles; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WebMaestroFr, you can prevent the Editor from accessing the "admin" user.php and user-edit.php pages.
https://gist.github.com/leonardomdornelas/5746247