This function has been deprecated. Use get_category() instead.

get_linkcatname( int $id )

Gets the name of category by id.


Description

See also


Parameters

$id

(int) (Required) The category to get. If no category supplied uses 0


Return

(string)


Source

File: wp-includes/deprecated.php

function get_linkcatname($id = 0) {
	_deprecated_function( __FUNCTION__, 'WP-2.1.0', 'get_category()' );

	$id = (int) $id;

	if ( empty($id) )
		return '';

	$cats = wp_get_link_cats($id);

	if ( empty($cats) || ! is_array($cats) )
		return '';

	$cat_id = (int) $cats[0]; // Take the first cat.

	$cat = get_category($cat_id);
	return $cat->name;
}


Changelog

Changelog
Version Description
WP-2.1.0 Use get_category()
WP-0.71 Introduced. This function has been deprecated. Use get_category() instead.