get_category_link( int|object $category )

Retrieve category link URL.


Description

See also


Top ↑

Parameters

$category

(int|object) (Required) Category ID or object.


Top ↑

Return

(string) Link on success, empty string if category does not exist.


Top ↑

Source

File: wp-includes/category-template.php

function get_category_link( $category ) {
	if ( ! is_object( $category ) ) {
		$category = (int) $category;
	}

	$category = get_term_link( $category );

	if ( is_wp_error( $category ) ) {
		return '';
	}

	return $category;
}

Top ↑

Changelog

Version Description
1.0.0 Introduced.