Can I retrieve woocommerce product category name by ID?
Not thumbnail, not the URL, not the Sub-categories, just raw Category name.
Can I retrieve woocommerce product category name by ID?
Not thumbnail, not the URL, not the Sub-categories, just raw Category name.
Use get_term_by
:
$id = 42;
if( $term = get_term_by( 'id', $id, 'product_cat' ) ){
echo $term->name;
}