mature_blog
Fires when the 'mature' status is added to a site.
Usage
add_action( 'mature_blog', 'wp_kama_mature_blog_action' ); /** * Function for `mature_blog` action-hook. * * @param int $site_id Site ID. * * @return void */ function wp_kama_mature_blog_action( $site_id ){ // action... }
- $site_id(int)
- Site ID.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
mature_blog
wp-includes/ms-site.php 1186
do_action( 'mature_blog', $site_id );