Created
March 19, 2015 18:24
-
-
Save ultimatemember/8743ef32801f7bf08c82 to your computer and use it in GitHub Desktop.
All members to automatically be WP contributors when they sign up via UM
This file contains 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
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' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can't this be done via the normal WP option of setting the default registration role in WP?