WC_Abstract_Legacy_Product::get_categories() public WC 1.0
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 product categories.
{} It's a method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Return
String.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_categories( $sep, $before, $after );
- $sep(string)
- (default: ', ').
- $before(string)
- (default: '').
- $after(string)
- (default: '').
Changelog
Deprecated | 3.0.0 |
Code of WC_Abstract_Legacy_Product::get_categories() WC Abstract Legacy Product::get categories WC 5.0.0
public function get_categories( $sep = ', ', $before = '', $after = '' ) {
wc_deprecated_function( 'WC_Product::get_categories', '3.0', 'wc_get_product_category_list' );
return wc_get_product_category_list( $this->get_id(), $sep, $before, $after );
}