make_ham_user
Fires after the user is marked as a HAM user. Opposite of SPAM.
Использование
add_action( 'make_ham_user', 'wp_kama_make_ham_user_action' );
/**
* Function for `make_ham_user` action-hook.
*
* @param int $user_id ID of the user marked as HAM.
*
* @return void
*/
function wp_kama_make_ham_user_action( $user_id ){
// action...
}
- $user_id(int)
- ID of the user marked as HAM.
Список изменений
| С версии 3.0.0 | Введена. |
Где вызывается хук
make_ham_user
make_ham_user
wp-includes/user.php 2641
do_action( 'make_ham_user', $user_id );
wp-includes/ms-deprecated.php 729
do_action( 'make_ham_user', $id );
Где используется хук в WordPress
wp-includes/ms-default-filters.php 87
add_action( $action, 'wp_maybe_update_network_user_counts', 10, 0 );