Skip to content

Instantly share code, notes, and snippets.

@styledev
Created November 27, 2012 21:54
Show Gist options
  • Save styledev/4157391 to your computer and use it in GitHub Desktop.
Save styledev/4157391 to your computer and use it in GitHub Desktop.
function function_name($user_id) {
if( isset($_POST['company_name']) ) update_user_meta( $user_id, 'company_name', $_POST['company_name'] );
}
add_action( 'user_register', 'function_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment