get_category_link( int|object $category )
Retrieve category link URL.
Description
See also
Parameters
- $category
-
(Required) Category ID or object.
Return
(string) Link on success, empty string if category does not exist.
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;
}
Changelog
Version | Description |
---|---|
WP-1.0.0 | Introduced. |