wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_linkcatname › WordPress Function

Desde0.71
Obsoleto2.1.0
get_linkcatname ( $id = 0 )
Parâmetros:
  • (int) $id The category to get. If no category supplied uses 0
    Required: No
    Padrão:
Ver:
Retorna:
  • (string)
Definido em:
Codex:

Gets the name of category by ID.



Fonte

function get_linkcatname($id = 0) {
	_deprecated_function( __FUNCTION__, '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;
}