我需要通过帐户资金通过 WooCommerce订阅成功续订其会员资金,为用户的帐户添加资金。
有没有办法通过WP功能这样做?如果我怎么做?我试过以下没有运气。
add_action('processed_subscription_payment', 'custom_add_funds', 10, 2);
function custom_add_funds($user_id) {
// get current user's funds
$funds = get_user_meta( $user_id, 'account_funds', true );
// add £40
$funds = $funds + 40;
// add funds to user
update_user_meta( $user_id, 'account_funds', $funds );
}