make_undelete_blog action-hookWP 3.5.0

Fires when the 'deleted' status is removed from a site.

Usage

add_action( 'make_undelete_blog', 'wp_kama_make_undelete_blog_action' );

/**
 * Function for `make_undelete_blog` action-hook.
 * 
 * @param int $site_id Site ID.
 *
 * @return void
 */
function wp_kama_make_undelete_blog_action( $site_id ){

	// action...
}
$site_id(int)
Site ID.

Changelog

Since 3.5.0 Introduced.

Where the hook is called

wp_maybe_transition_site_statuses_on_update()
make_undelete_blog
wp-includes/ms-site.php 1248
do_action( 'make_undelete_blog', $site_id );

Where the hook is used in WordPress

wp-includes/ms-default-filters.php 95
add_action( $action, 'wp_maybe_update_network_site_counts', 10, 0 );