In WordPress, there isn’t a simple template tag to get the category slug or description if you’re making a category.php template. Here is a little work-around:
$cat = get_query_var ( 'cat' ); $catslug = get_category ( $cat )->slug; $catdesc = get_category ( $cat )->description;