Skip to content

Instantly share code, notes, and snippets.

@nextend
Created March 7, 2018 06:38
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 nextend/5a7ba0905e28413fa21c4b2f8b287400 to your computer and use it in GitHub Desktop.
Save nextend/5a7ba0905e28413fa21c4b2f8b287400 to your computer and use it in GitHub Desktop.
Nextend Social Login - TrackerData
<?php
add_action('nsl_register_new_user', function ($user_id) {
if (NextendSocialLogin::getTrackerData() == 'editor') {
$user = new WP_User($user_id);
$user->set_role('editor');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment