wpmu_upgrade_site
Fires after each site has been upgraded.
Description
Parameters (1)
- 0. $site_id (int)
- The site id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wpmu_upgrade_site', $site_id );
- The following example is for adding a hook callback.
- // define the wpmu_upgrade_site callback
- function action_wpmu_upgrade_site( $site_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wpmu_upgrade_site', 'action_wpmu_upgrade_site', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wpmu_upgrade_site', 'action_wpmu_upgrade_site', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/network/upgrade.php
- do_action( 'wpmu_upgrade_site', $site_id );