WooCommerce get Product Category URL
Today we talk about WooCommerce or WordPress get product category URL. In this tutorial, We focus on getting the product category URL by post category id. You can use the get_category_link function to get the product category URL. You need to pass the product category id to get the URL.
Let’s start with our example.
$productCategoryId = 1; // product category id
$productCategoryUrl = get_category_link($productCategoryId)
$productCategoryUrl = get_category_link($productCategoryId)