wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_catname › WordPress Function

Seit0.71
Veraltet2.8.0
get_catname ( $cat_id )
Parameter:
  • (int) $cat_id Category ID
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) category name
Definiert in:
Codex:

Retrieve the category name by the category ID.



Quellcode

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