Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::update_post_meta()protectedWC 1.0

Proxy to udpating order meta. Here for backward compatibility reasons.

Метод класса: OrdersTableDataStore{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->update_post_meta( $order );
$order(\WC_Order) (обязательный) (передается по ссылке — &)
Order object.

Код OrdersTableDataStore::update_post_meta() WC 8.7.0

protected function update_post_meta( &$order ) {
	$this->update_order_meta( $order );
}