• Cory.Nickerson

    (@corynickerson)


    Was looking through the documents and couldn’t figure out how to use a plugin I am working on to add custom form inputs during the user registration, and to add the columns to the table in the database for this custom information.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator bcworkz

    (@bcworkz)

    I would strongly discourage you from adding columns to the user table. You will likely bollix the ability for WP to update the table at some time in the future. Instead, store your extra data in usermeta, that is what this table is for, and there are functions to use so you do not need to directly interact with mySQL.

    As for adding form fields, I think you are out of luck for the user-new.php page. However, the user-edit.php page appears to have filters and actions that can be used. This is consistent with the default behavior of there being more fields in the edit page than the new page.

    Globalwalyy

    (@globalwalyy)

    I Strongly agreed with Bcworkz and if you really wanna ad it, there is a plugin for that i can help you get it if you want..

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Creating Custom User Registration Fields’ is closed to new replies.