Warning: This method has been deprecated. – Use ::save instead.
WC_Legacy_Shipping_Zone::update()
Update a zone.
Description Description
Source Source
File: includes/legacy/class-wc-legacy-shipping-zone.php
public function update() {
wc_deprecated_function( 'WC_Shipping_Zone::update', '3.0', 'WC_Shipping_Zone::save instead.' );
$data_store = WC_Data_Store::load( 'shipping-zone' );
try {
$data_store->update( $this );
} catch ( Exception $e ) {
return false;
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |