如果您有产品类别id,则可以使用
id
$link = get_term_link( $product_cat_id, 'product_cat' );
获取产品类别的网址.
编辑确保product_cat_id是一个整数,使用以下行完全保存:
$link = get_term_link( (int)$product_cat_id, 'product_cat' );