Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
All members to automatically be WP contributors when they sign up via UM
add_action('um_after_user_is_approved', 'wp_role_contributor_after_um', 99 );
function wp_role_contributor_after_um( $user_id ) {
$wp_user_object = new WP_User( $user_id );
$wp_user_object->set_role( 'contributor' );
}
@pjeaje
Copy link

pjeaje commented Dec 24, 2015

Can't this be done via the normal WP option of setting the default registration role in WP?

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