Warning: This method has been deprecated. Use wc_get_related_products instead.

WC_Abstract_Legacy_Product::get_related( int $limit = 5 )

Get and return related products.


Description Description


Parameters Parameters

$limit

(Optional)

Default value: 5


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/legacy/abstract-wc-legacy-product.php

	public function get_related( $limit = 5 ) {
		wc_deprecated_function( 'WC_Product::get_related', '3.0', 'wc_get_related_products' );
		return wc_get_related_products( $this->get_id(), $limit );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.