make_spam_user
Fires after the user is marked as a SPAM user.
Usage
add_action( 'make_spam_user', 'wp_kama_make_spam_user_action' ); /** * Function for `make_spam_user` action-hook. * * @param int $user_id ID of the user marked as SPAM. * * @return void */ function wp_kama_make_spam_user_action( $user_id ){ // action... }
- $user_id(int)
- ID of the user marked as SPAM.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
make_spam_user
make_spam_user
wp-includes/user.php 2443
do_action( 'make_spam_user', $user_id );
wp-includes/ms-deprecated.php 724
do_action( 'make_spam_user', $id );
Where the hook is used in WordPress
wp-includes/ms-default-filters.php 88
add_action( $action, 'wp_maybe_update_network_user_counts', 10, 0 );