WordPress Hook for user register

You can use user_register action hook which fires after a user has registered and passes $user_id as a variable:

add_action('user_register','my_function');

function my_function($user_id){
  //do your stuff
}

Leave a Comment