Forked from pippinsplugins/gist:d973776836ab984aea06
Last active
August 29, 2015 14:20
-
-
Save ramiabraham/aa81b6026a65a94d7640 to your computer and use it in GitHub Desktop.
Set affiliate role on registration
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
<?php | |
/* | |
* Plugin name: Affiliate role on registration | |
*/ | |
function pw_affwp_set_role_on_registration( $affiliate_id = 0 ) { | |
$user_id = affwp_get_affiliate_user_id( $affiliate_id ); | |
$user = new WP_User( $user_id ); | |
$user->add_role( 'affiliate' ); | |
} | |
add_action( 'affwp_insert_affiliate', 'pw_affwp_set_role_on_registration' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment