do_action( 'personal_options_update', int $user_id )
Fires before the page loads on the ‘Profile’ editing screen.
Description
The action only fires if the current user is editing their own profile.
Parameters
-
$user_id
int -
The user ID.
More Information
Generally, action hook is used to save custom fields that have been added to the WordPress profile page.
This hook only triggers when a user is viewing their own profile page. If you want to apply your hook to ALL profile pages (including users other than the current one), then you also need to use the edit_user_profile_update hook.
Source
File: wp-admin/user-edit.php
.
View all references
do_action( 'personal_options_update', $user_id );
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
This example shows how to save a custom field named ‘your_field’…
(From Codex)
This example shows how to save a custom field named ‘your_field’…