How to get the category page link in WordPress?

How to get the category page link in WordPress?

You can add simply this code to get category page link
only you have to pass the category id
<?php echo get_category_link($category->term_id);?>

Comments