Fires before user profile update errors are returned.
Parameters
Source
do_action_ref_array( 'user_profile_update_errors', array( &$errors, $update, &$user ) );
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |
CARVIEW |
Fires before user profile update errors are returned.
This hook runs AFTER edit_user_profile_update and personal_options_update. If you want to validate some custom fields before saving, a workaround is to check the $errors array in this same callback, after performing your validations, and save the data if it is empty.
On return, if the errors object contains errors then the save is not completed & the errors displayed to the user.
do_action_ref_array( 'user_profile_update_errors', array( &$errors, $update, &$user ) );
Used by | Description |
---|---|
edit_user()wp-admin/includes/user.php | Edit user settings based on contents of $_POST |
Version | Description |
---|---|
2.8.0 | Introduced. |
You must log in before being able to contribute a note or feedback.
User Contributed Notes