update_option_new_admin_email
The WordPress Core update option new admin email hook.
Description
add_action( 'update_option_new_admin_email', (string) $update_option_new_admin_email, (int) $int, (int) $int );
Parameters (3)
- 0. $update_option_new_admin_email (string) =>
'update_option_new_admin_email'
- The update option new admin email.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_option_new_admin_email', $update_option_new_admin_email, $int, $int );
- The following example is for adding a hook callback.
- // define the update_option_new_admin_email callback
- function action_update_option_new_admin_email( $update_option_new_admin_email, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_option_new_admin_email', 'action_update_option_new_admin_email', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_option_new_admin_email', 'action_update_option_new_admin_email', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/ms-admin-filters.php
- add_action( 'update_option_new_admin_email', 'update_option_new_admin_email', 10, 2 );