profile_personal_options WordPress Action Hook

The profile_personal_options hook is executed at the top of the "Personal Options" section in the user profile editing screen. This hook gives you the chance to add additional fields to this section for your users.

do_action( 'profile_personal_options', WP_User $profile_user ) #

Fires after the ‘Personal Options’ settings table on the ‘Profile’ editing screen.


Description

The action only fires if the current user is editing their own profile.


Top ↑

Parameters

$profile_user

(WP_User)The current WP_User object.


Top ↑

Source

File: wp-admin/user-edit.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
2.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.