profile_personal_options
Fires after the 'Personal Options' settings table on the 'Your Profile' editing screen.
Description
Parameters (1)
- 0. $array (callback) =>
array( &$this, 'user_profile' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'profile_personal_options', $array );
- The following example is for adding a hook callback.
- // define the profile_personal_options callback
- function action_profile_personal_options( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'profile_personal_options', 'action_profile_personal_options', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'profile_personal_options', 'action_profile_personal_options', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /modules/post-by-email.php
- add_action( 'profile_personal_options', array( &$this, 'user_profile' ) );
- /modules/after-the-deadline.php
- add_action( 'profile_personal_options', 'AtD_config' );