WC_Abstract_Legacy_Product::get_variation_id
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Get variation ID.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Returns
Int.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_variation_id();
Changelog
| Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::get_variation_id() WC Abstract Legacy Product::get variation id code WC 10.8.1
public function get_variation_id() {
wc_deprecated_function( 'WC_Product::get_variation_id', '3.0', 'WC_Product::get_id(). It will always be the variation ID if this is a variation.' );
return $this->get_id();
}