wpmu_update_blog_options WordPress Action Hook
The wpmu_update_blog_options hook is called whenever a site's options are updated. It allows you to run your own code when this happens. This is useful if you need to do something when a site's options are updated, such as update your own settings or send a notification.
do_action( 'wpmu_update_blog_options', int $id ) #
Fires after the site options are updated.
Contents
Parameters
- $id
(int)The ID of the site being updated.
Source
Changelog
Version | Description |
---|---|
4.4.0 | Added $id parameter. |
3.0.0 | Introduced. |