Skip to content

Instantly share code, notes, and snippets.

@chrisguitarguy
Created February 11, 2012 21:51
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save chrisguitarguy/1804462 to your computer and use it in GitHub Desktop.
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.
<?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
Copy link

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 !

@leonardomdornelas
Copy link

WebMaestroFr, you can prevent the Editor from accessing the "admin" user.php and user-edit.php pages.

https://gist.github.com/leonardomdornelas/5746247

@Muhammad-zohaib-Abbas
Copy link

Great..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment