adding 'website' field on registration form
-
hi,
i would like to add website field to registration form.
i added following lines in registration.php :
$website = new WPAS_Custom_Field( 'website', array( 'name' => 'website', 'args' => array( 'required' => true, 'field_type' => 'text', 'label' => __( 'Website', 'awesome-support' ), 'placeholder' => __( 'https://', 'awesome-support' ), 'sanitize' => 'sanitize_text_field' ) ) );
but when i check admin panel, data is not registered to ‘website’ field on user details.
what should i do to make it appear on admin panel?
thank you
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘adding 'website' field on registration form’ is closed to new replies.