WC_Abstract_Legacy_Product::get_cross_sellspublicWC 1.0

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.

Returns the cross sell product ids.

Method of the class: WC_Abstract_Legacy_Product{}

Hooks from the method

Returns

Array.

Usage

$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product();
$WC_Abstract_Legacy_Product->get_cross_sells();

Changelog

Deprecated since 3.0.0

WC_Abstract_Legacy_Product::get_cross_sells() code WC 10.3.6

public function get_cross_sells() {
	wc_deprecated_function( 'WC_Product::get_cross_sells', '3.0', 'WC_Product::get_cross_sell_ids' );
	return apply_filters( 'woocommerce_product_crosssell_ids', $this->get_cross_sell_ids(), $this );
}