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; | |
} |
WebMaestroFr, you can prevent the Editor from accessing the "admin" user.php and user-edit.php pages.
Great..
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Christopher,
This is working well, but I wish we could allow Editors to EDIT the profiles as well. The thing is that if we provide them the 'edit_users' capabilities, they can modify admin profiles too... and we don't want that.
I can't find a way to sort this out. How would you hide non-subscribers profiles to the editors ? I posted this question on http://wordpress.org/support/topic/editors-can-only-edit-subscribers-profiles, but I thought you could eventually sort me out here.
Have a nice day !