woocommerce_payment_token_updated
Использование
add_action( 'woocommerce_payment_token_updated', 'wp_kama_woocommerce_payment_token_updated_action' );
/**
* Function for `woocommerce_payment_token_updated` action-hook.
*
* @param $token_id
*
* @return void
*/
function wp_kama_woocommerce_payment_token_updated_action( $token_id ){
// action...
}
- $token_id
- -
Где вызывается хук
woocommerce_payment_token_updated
woocommerce/includes/data-stores/class-wc-payment-token-data-store.php 133
do_action( 'woocommerce_payment_token_updated', $token->get_id() );