WC_Abstract_Legacy_Product::get_tags
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Returns the product tags.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Returns
Array
.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_tags( $sep, $before, $after );
- $sep(string)
- .
Default: ', ' - $before(string)
- .
Default: '' - $after(string)
- .
Default: ''
Changelog
Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::get_tags() WC Abstract Legacy Product::get tags code WC 9.9.3
public function get_tags( $sep = ', ', $before = '', $after = '' ) { wc_deprecated_function( 'WC_Product::get_tags', '3.0', 'wc_get_product_tag_list' ); return wc_get_product_tag_list( $this->get_id(), $sep, $before, $after ); }