is_product_category()
Is_product_category - Returns true when viewing a product category.
Хуков нет.
Возвращает
true|false.
Использование
is_product_category( $term );
- $term(строка)
- The term slug your checking for. Leave blank to return true on any.
По умолчанию: ''
Код is_product_category() is product category WC 10.4.3
function is_product_category( $term = '' ) {
return is_tax( 'product_cat', $term );
}