WC_Product::get_category_ids( string $context = 'view' )
Get category ids.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(array)
Source Source
File: includes/abstracts/abstract-wc-product.php
571 572 573 | public function get_category_ids( $context = 'view' ) { return $this ->get_prop( 'category_ids' , $context ); } |
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |