make_ham_blog
Fires when the 'spam' status is removed from a site.
Usage
add_action( 'make_ham_blog', 'wp_kama_make_ham_blog_action' );
/**
* Function for `make_ham_blog` action-hook.
*
* @param int $site_id Site ID.
*
* @return void
*/
function wp_kama_make_ham_blog_action( $site_id ){
// action...
}
- $site_id(int)
- Site ID.
Changelog
| Since 3.0.0 | Introduced. |
Where the hook is called
make_ham_blog
wp-includes/ms-site.php 1184
do_action( 'make_ham_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 );