make_undelete_blog action-hook . WP 3.5.0
Fires when the 'deleted' status is removed from a site.
Usage
add_action( 'make_undelete_blog', 'action_function_name_6404' ); function action_function_name_6404( $site_id ){ // action... }
- $site_id(int)
- Site ID.
Changelog
Since 3.5.0 | Introduced. |
Where the hook is called
make_undelete_blog
wp-includes/ms-site.php 1262
do_action( 'make_undelete_blog', $site_id );
Where in WP core the hook is used WordPress
wp-includes/ms-site.php 91
add_action( $action, 'wp_maybe_update_network_site_counts', 10, 0 );