personal_options_update
The WordPress Core personal options update hook.
Description
Parameters (1)
- 0. $array (callback) =>
array(&$this, 'one_click_profile_form_save')
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'personal_options_update', $array );
- The following example is for adding a hook callback.
- // define the personal_options_update callback
- function action_personal_options_update( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'personal_options_update', 'action_personal_options_update', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'personal_options_update', 'action_personal_options_update', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action( 'personal_options_update', array(&$this, 'one_click_profile_form_save') );