Skip to content

Instantly share code, notes, and snippets.

@chazzzzy
Last active November 24, 2015 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chazzzzy/f8f7fe0c62da3414962c to your computer and use it in GitHub Desktop.
Save chazzzzy/f8f7fe0c62da3414962c to your computer and use it in GitHub Desktop.
Ultimate Member Roles for Writing and Press-This
<?php
//https://gist.github.com/ultimatemember/8743ef32801f7bf08c82
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