wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_catname › WordPress Function

Da0.71
Deprecato2.8.0
get_catname ( $cat_id )
Parametri:
  • (int) $cat_id Category ID
    Richiesto:
Vedi:
Ritorna:
  • (string) category name
Definito a:
Codex:

Retrieve the category name by the category ID.



Sorgenti

function get_catname( $cat_id ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_cat_name()' );
	return get_cat_name( $cat_id );
}