WC_Customer_Download::set_order_id()
Set order_id.
Метод класса: WC_Customer_Download{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Customer_Download = new WC_Customer_Download(); $WC_Customer_Download->set_order_id( $value );
- $value(int) (обязательный)
- Order ID.
Код WC_Customer_Download::set_order_id() WC Customer Download::set order id WC 9.8.1
public function set_order_id( $value ) { $this->set_prop( 'order_id', absint( $value ) ); }