Can I retrieve woocommerce product category name by ID?

Not thumbnail, not the URL, not the Sub-categories, just raw Category name.

1
1

Use get_term_by:

$id = 42;
if( $term = get_term_by( 'id', $id, 'product_cat' ) ){
    echo $term->name;
}

Leave a Reply

Your email address will not be published. Required fields are marked *