WC_Abstract_Legacy_Product::get_gallery_attachment_ids()
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.
Returns the gallery attachment ids.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Return
Array
.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_gallery_attachment_ids();
Changelog
Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::get_gallery_attachment_ids() WC Abstract Legacy Product::get gallery attachment ids code WC 7.7.0
public function get_gallery_attachment_ids() { wc_deprecated_function( 'WC_Product::get_gallery_attachment_ids', '3.0', 'WC_Product::get_gallery_image_ids' ); return $this->get_gallery_image_ids(); }