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