WC_Product_Variation_Data_Store_CPT::update_version_and_type()protectedWC 3.0.0

Make sure we store the product version (to track data changes).

Method of the class: WC_Product_Variation_Data_Store_CPT{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->update_version_and_type( $product );
$product(WC_Product) (required) (passed by reference — &)
Product object.

Changelog

Since 3.0.0 Introduced.

WC_Product_Variation_Data_Store_CPT::update_version_and_type() code WC 8.7.0

protected function update_version_and_type( &$product ) {
	wp_set_object_terms( $product->get_id(), '', 'product_type' );
	update_post_meta( $product->get_id(), '_product_version', Constants::get_constant( 'WC_VERSION' ) );
}