wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_linkcatname is deprecated since version 2.1.0!
Alternative: get_category()
Alternative: get_category()
get_linkcatname › WordPress Function
Seit0.71
Veraltet2.1.0
› get_linkcatname ( $id = 0 )
| Parameter: |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Gets the name of category by ID.
Ähnliche Funktionen: get_catname, get_cat_name, get_linksbyname, get_linkobjectsbyname, get_linkrating
Quellcode
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;
}