wpmu_update_blog_options
Fires after the site options are updated.
Description
Parameters (1)
- 0. $id (int)
- The ID of the site being updated.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wpmu_update_blog_options', $id );
- The following example is for adding a hook callback.
- // define the wpmu_update_blog_options callback
- function action_wpmu_update_blog_options( $id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wpmu_update_blog_options', 'action_wpmu_update_blog_options', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wpmu_update_blog_options', 'action_wpmu_update_blog_options', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/network/site-settings.php
- do_action( 'wpmu_update_blog_options', $id );