wc_paying_customer() WC 1.0
Order payment completed - This is a paying customer.
Хуков нет.
Возвращает
Null. Ничего.
Использование
wc_paying_customer( $order_id );
- $order_id(число) (обязательный)
- Order ID.
Код wc_paying_customer() wc paying customer WC 5.0.0
function wc_paying_customer( $order_id ) {
$order = wc_get_order( $order_id );
$customer_id = $order->get_customer_id();
if ( $customer_id > 0 && 'shop_order_refund' !== $order->get_type() ) {
$customer = new WC_Customer( $customer_id );
if ( ! $customer->get_is_paying_customer() ) {
$customer->set_is_paying_customer( true );
$customer->save();
}
}
}