The add_action(‘register_form’) isn’t effecting my registration form

Since WordPress 3.0.0, the action to call is “signup_extra_fields” instead of “register_form”, so you should use:

add_action( 'signup_extra_fields', 'extended_register_form' );