make_ham_user action-hook . WP 3.0.0
Fires after the user is marked as a HAM user. Opposite of SPAM.
Usage
add_action( 'make_ham_user', 'action_function_name_5880' ); function action_function_name_5880( $user_id ){ // action... }
- $user_id(int)
- ID of the user marked as HAM.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
make_ham_user
make_ham_user
wp-includes/user.php 2107
do_action( 'make_ham_user', $user_id );
wp-includes/ms-deprecated.php 727
do_action( 'make_ham_user', $id );
Where in WP core the hook is used WordPress
wp-includes/user.php 88
add_action( $action, 'wp_maybe_update_network_user_counts', 10, 0 );