WC_Order::set_date_paid()
Set date paid.
Метод класса: WC_Order{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Order = new WC_Order(); $WC_Order->set_date_paid( $date );
- $date(строка|int|null)
- UTC timestamp, or ISO 8601 DateTime. If the DateTime string has no timezone or offset, WordPress site timezone will be assumed. Null if their is no date.
По умолчанию: null
Код WC_Order::set_date_paid() WC Order::set date paid WC 9.3.1
public function set_date_paid( $date = null ) { $this->set_date_prop( 'date_paid', $date ); }