Get first_name and last_name on user_register hook

So user_register is when the post data for user registration is submitted. Can you try this

if ( isset( $_POST['first_name'] ) ) {
    $first_name = $_POST['first_name'];
}

Ditto for last_name.

I looked up the codex for the user_register hook, check the example.

Leave a Comment