wpmu_blog_updated
Fires after the blog details are updated.
Usage
add_action( 'wpmu_blog_updated', 'wp_kama_wpmu_blog_updated_action' ); /** * Function for `wpmu_blog_updated` action-hook. * * @param int $blog_id Site ID. * * @return void */ function wp_kama_wpmu_blog_updated_action( $blog_id ){ // action... }
- $blog_id(int)
- Site ID.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
wpmu_blog_updated
wp-includes/ms-blogs.php 30
do_action( 'wpmu_blog_updated', $site_id );