wc_get_product_category_list()
Returns the product categories in a list.
Хуков нет.
Возвращает
Строку.
Использование
wc_get_product_category_list( $product_id, $sep, $before, $after );
- $product_id(int) (обязательный)
- Product ID.
- $sep(строка)
- .
По умолчанию:', ' - $before(строка)
- .
По умолчанию:'' - $after(строка)
- .
По умолчанию:''
Код wc_get_product_category_list() wc get product category list WC 10.8.1
function wc_get_product_category_list( $product_id, $sep = ', ', $before = '', $after = '' ) {
return get_the_term_list( $product_id, 'product_cat', $before, $sep, $after );
}