PHP validation and error messages in user profiles
-
I have added a custom field to user profiles in bbPress however I am unsure how to do form validation other than javascript. I would like to do some PHP validation however the few things I have tried didn’t work.
If you fail to enter an email it will say “ERROR: Please enter an e-mail address.” after you have submitted the form. I want something like that.
I have tried:
$myErrors = new WP_Error(); $myErrors->add('id_error', __('Test error.',"")); bbp_add_error( 'bbp_id_invalid', __( '<strong>ERROR</strong>: The ID you entered is invalid.', 'bbpress' ) );
I am not at all familiar with error handling in both WordPress and bbPress however I feel it is a must.
Any help would be must appreciated.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘PHP validation and error messages in user profiles’ is closed to new replies.