profile_personal_options action-hook . WP 2.0.0
Fires after the 'Personal Options' settings table on the 'Profile' editing screen.
The action only fires if the current user is editing their own profile.
Usage
add_action( 'profile_personal_options', 'action_function_name_2404' ); function action_function_name_2404( $profileuser ){ // action... }
- $profileuser(WP_User)
- The current WP_User object.
Changelog
Since 2.0.0 | Introduced. |
Where the hook is called
In file: /wp-admin/user-edit.php
profile_personal_options
wp-admin/user-edit.php 401
do_action( 'profile_personal_options', $profileuser );