Get WordPress Current Category URL and Link
<?php global $wp_query; $cat_obj = $wp_query->get_queried_object(); // Get the ID of a given category $category_id = get_cat_ID( ‘Category Name’ ); // Get the URL of this category $category_link = get_category_link( $category_id ); ?> <!– Print a link to this category… Read moreGet WordPress Current Category URL and Link