WC_Shipping::sort_shipping_methods()publicWC 1.0

Deprecated from version 2.6.0. It is no longer supported and can be removed in future releases. Use d to determine sort order of methods, but this is now controlled by zones and thus unused instead.

Deprecated

Method of the class: WC_Shipping{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Shipping = new WC_Shipping();
$WC_Shipping->sort_shipping_methods();

Changelog

Deprecated since 2.6.0 Was previously used to determine sort order of methods, but this is now controlled by zones and thus unused.

WC_Shipping::sort_shipping_methods() code WC 8.7.0

public function sort_shipping_methods() {
	wc_deprecated_function( 'sort_shipping_methods', '2.6' );
	return $this->shipping_methods;
}