WordPress Version: 6.2
/**
* Retrieve the category name by the category ID.
*
* @since 0.71
* @deprecated 2.8.0 Use get_cat_name()
* @see get_cat_name()
*
* @param int $cat_id Category ID
* @return string category name
*/
function get_catname($cat_id)
{
_deprecated_function(__FUNCTION__, '2.8.0', 'get_cat_name()');
return get_cat_name($cat_id);
}