Site icon Qaisar Satti's Blogs

WordPress get post category URL

Today we talk about WooCommerce or WordPress get post category URL. In this tutorial, We focus on getting the post category URL by post category id. You can use the get_category_link function to get the post category URL. You need to pass the post category id to get the URL.

Let’s start with our example.

$postCategoryId      = 1; // post category id
$postCategoryUrl = get_category_link($postCategoryId)
Exit mobile version