Add and Remove fields in Profile page
This answer is copied from the best post over this topic! I could’ve just given you the links, but that would get me a comment from the mod to post sample code 😉 For adding the fields: add_action( ‘show_user_profile’, ‘my_show_extra_profile_fields’ ); add_action( ‘edit_user_profile’, ‘my_show_extra_profile_fields’ ); function my_show_extra_profile_fields( $user ) { ?> <h3>Extra profile information</h3> <table … Read more