WC_Abstract_Legacy_Product::get_formatted_variation_attributes()publicWC 1.0

Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Get formatted variation data with WC < 2.4 back compat and proper formatting of text-based attribute names.

Method of the class: WC_Abstract_Legacy_Product{}

No Hooks.

Return

String.

Usage

$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product();
$WC_Abstract_Legacy_Product->get_formatted_variation_attributes( $flat );
$flat(true|false)
-
Default: false

Changelog

Deprecated since 3.0.0

WC_Abstract_Legacy_Product::get_formatted_variation_attributes() code WC 8.7.0

public function get_formatted_variation_attributes( $flat = false ) {
	wc_deprecated_function( 'WC_Product::get_formatted_variation_attributes', '3.0', 'wc_get_formatted_variation' );
	return wc_get_formatted_variation( $this, $flat );
}