personal_options action-hookWP 2.7.0

Fires at the end of the 'Personal Options' settings table on the user editing screen.

Usage

add_action( 'personal_options', 'wp_kama_personal_options_action' );

/**
 * Function for `personal_options` action-hook.
 * 
 * @param WP_User $profile_user The current WP_User object.
 *
 * @return void
 */
function wp_kama_personal_options_action( $profile_user ){

	// action...
}
$profile_user(WP_User)
The current WP_User object.

Changelog

Since 2.7.0 Introduced.

Where the hook is called

In file: /wp-admin/user-edit.php
personal_options
wp-admin/user-edit.php 416
do_action( 'personal_options', $profile_user );

Where the hook is used in WordPress

Usage not found.