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
Return Return
(array)
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 ); }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |